Scallop is a programming language created in 2024 by Ziyang Li.
#2279on PLDB | 1Years Old |
git clone https://github.com/scallop-lang/scallop
Neurosymbolic Programming with Scallop. Based on Datalog.
rel path(x, y) = dash(x, y)
rel path(x, y) = path(x, z), dash(z, y)
rel is_connected() = dot(x), dot(y), path(x, y), x != y