-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update(fildesh): with new boolean syntax
- Loading branch information
Showing
6 changed files
with
18 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
(name "popcorn") | ||
(amount 3) | ||
(variety true) | ||
(variety +true) | ||
(expect_unit_cost 7.50) | ||
|
||
; List of favorite kinds. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
((commute_with bus) (name "muni")) | ||
((joyride_with car)) | ||
((vacation_with car) (rideshare true)) | ||
((vacation_with car) (rideshare +true)) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
((expressions) | ||
|
||
(value true) | ||
(value +true) | ||
|
||
(not (value false)) | ||
(not (value +false)) | ||
|
||
((or) (() (value false)) (() (value true))) | ||
((or) (value false) (value true)) | ||
(((or)) false true) | ||
((or) (() (value +false)) (() (value +true))) | ||
((or) (value +false) (value +true)) | ||
(((or)) +false +true) | ||
|
||
(((or)) | ||
false | ||
(((and)) true false) | ||
(((or)) false false true)) | ||
+false | ||
(((and)) +true +false) | ||
(((or)) +false +false +true)) | ||
) |