-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- "is" was only used in first section. - "is" leads to awkward syntax like `(is int (...))` where the semantics of "is" and "int" are not clear. - Removal and introduction of `is:int`, `is:square`, `is:prime` simplifies syntax (`is int | unary 1 0` vs. `is:int | unary 1 0`). - The semantics of `is:int` is clear: it gets a number and outputs a bool and therefore leads to a statement with boolean value (should be true at top level of message). - This is in line with the later statements, where e.g. comparisons take place.
- Loading branch information
Showing
3 changed files
with
16 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters