-
Notifications
You must be signed in to change notification settings - Fork 0
mfrawley/mArc
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Syntax
------
define (factorial n)
if (<= n 1) 1
* n (factorial (- n 1))
define (add a b)
(+ a b)
Compiles to
--------
(define (factorial n)
(if (<= n 1) 1
(* n (factorial (- n 1)))))
(define (add a b)
(+ a b))
About
Arc-like LISP with optional indentation-based S-Expressions
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published