Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdearman committed Jun 8, 2024
1 parent b4933c1 commit e81ce28
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/mvp.scm
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@
;; let expressions
(let ((x 1) (y 2)) (+ x y))

;; fn expressions
(let ((x 1)
((foo y) (+ x y)))
(foo 2))


;; quote expressions
(quote (1 2 3))
'(1 2 3)
Expand Down

0 comments on commit e81ce28

Please sign in to comment.