-
Hi Eric!
I was confused by Is this standard Datalog notation, or an extension you added? Thank you! Cheers, --Will |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi Will! There's no positional arguments in Percival; all arguments are named. This is to allow us to do queries on named records, as is common in datasets for machine learning, data science, etc. In this example, |
Beta Was this translation helpful? Give feedback.
-
Thanks, Eric! :) I think it would be worth explaining this is the tutorial. Cheers, --Will |
Beta Was this translation helpful? Give feedback.
Hi Will! There's no positional arguments in Percival; all arguments are named. This is to allow us to do queries on named records, as is common in datasets for machine learning, data science, etc.
In this example,
path(x, y)
is a shorthand syntax forpath(x: x, y: y)
.