-
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 & array syntax
- Loading branch information
Showing
18 changed files
with
129 additions
and
88 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
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
Empty file.
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,11 +1,12 @@ | ||
; An array of integers. | ||
((my_integers) 1 2 3) | ||
(my_integers (()) 1 2 3) | ||
|
||
; An array of strings. | ||
((my_strings) "yo" "howdy" "sup") | ||
(my_strings (()) "yo" "howdy" "sup") | ||
|
||
; An array of 3 messages. | ||
((my_messages) | ||
(my_messages (()) | ||
(() (i 5)) | ||
(()) | ||
(() (i 5) (f 5.5) (s "hello"))) | ||
() | ||
(() (i 5) (f 5.5) (s "hello")) | ||
) |
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,13 +1,15 @@ | ||
(name "popcorn") | ||
(name popcorn) | ||
(amount 3) | ||
(variety true) | ||
(variety +true) | ||
(expect_unit_cost 7.50) | ||
|
||
; List of favorite kinds. | ||
((favorites) | ||
"cheddar" "caramel" "butter") | ||
(favorites (()) | ||
cheddar caramel butter | ||
) | ||
|
||
; In case of no popcorn. | ||
(alternative | ||
(name "hot dog") | ||
(amount 2)) | ||
(name "hot dog") | ||
(amount 2) | ||
) |
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,18 +1,20 @@ | ||
(budget 30) | ||
|
||
((items) | ||
(items (()) | ||
(() | ||
(name "dip") | ||
(amount 1) | ||
(expect_cost 6.50) | ||
((favorites) "hummus" "garlic")) | ||
(favorites (()) "hummus" "garlic")) | ||
(() | ||
(name "hot sauce") | ||
(amount 3) | ||
(variety true) | ||
(variety +true) | ||
(expect_unit_cost 6.50) | ||
((favorites) | ||
(favorites (()) | ||
"yuzu" "kiss" "fire" | ||
"bee" "sunshine"))) | ||
"bee" "sunshine") | ||
) | ||
) | ||
|
||
; vim: ft=lisp lw=nil |
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
Oops, something went wrong.