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
Guys, seriously, this is unacceptable:
var lang = new Language.Language(); var v = AITools.Logic.Utils.VarExprSource(lang); var c = AITools.Logic.Utils.ConstExprSource(lang); var IsA = c["IsA"]; var dylan = c["dylan"]; var cat = c["cat"]; var expr = Utils.makeExpr(new Expression[]{IsA, dylan, cat});
What I want is something like this:
var lang = new Language.Language(); var v = new MagicVarExprSource(lang); var c = new MagicConstExprSource(lang); var IsA = c.IsA; var dylan = c.dylan; var cat = c.cat; var expr = IsA(dylan, cat);
So... yeah.
IsA
dylan
cat
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Guys, seriously, this is unacceptable:
What I want is something like this:
So... yeah.
IsA
,dylan
andcat
can be of some magical C# class that can be converted to the real logic typeThe text was updated successfully, but these errors were encountered: