We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently bandicoot supports only constant expressions to be passed to the functions, e.g. the following fragment works fine:
fn GetBooks(type string) Books { return select (genre == type) shelf; } # a constant expression GetBooks "novel";
but the following does not work so far:
fn GetInexpensive(genre string) Books { return select (price < 10.0) (GetBooks genre); }
more than that, the error message is confusing:
unknown identifier 'genre' neither function call nor variable declared with this name
The text was updated successfully, but these errors were encountered:
No branches or pull requests
currently bandicoot supports only constant expressions to be passed to the functions, e.g. the following fragment works fine:
but the following does not work so far:
more than that, the error message is confusing:
The text was updated successfully, but these errors were encountered: