about summary refs log tree commit diff stats
path: root/ex10.mu
Commit message (Expand)AuthorAgeFilesLines
* .Kartik K. Agaram2021-03-271-1/+1
* explicitly pass data disk to mainKartik K. Agaram2021-03-271-1/+1
* explicitly pass screen and keyboard to mainKartik K. Agaram2021-03-261-4/+4
* mouse support that requires pollingKartik K. Agaram2021-03-231-0/+42
rtik K. Agaram <vc@akkartik.com> 2014-11-27 05:23:22 -0800 344 - about to give up on rewrite rules' href='/akkartik/mu/commit/generic.mu?h=main&id=6952b8f0693920b7ad27793a75defaca5ef31a9d'>6952b8f0 ^
f184c95e ^












1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29






                                                                             
              






                                                           
                               












                                                   
; To demonstrate generic functions, we'll construct a factorial function with
; separate base and recursive cases. Compare factorial.mu.

; def factorial n = n*factorial(n-1)
(def factorial [
  ((default-scope scope-address) <- new (scope literal) (30 literal))
  ((n integer) <- arg (0 literal))
  more-clauses
  ((x integer) <- sub (n integer) (1 literal))
  ((subresult integer) <- factorial (x integer))
  ((result integer) <- mul (subresult integer) (n integer))
  (reply (result integer))
])

; def factorial 0 = 1
(after factorial/more-clauses [
  { begin
    ((zero? boolean) <- eq (n integer) (0 literal))
    (break-unless (zero? boolean))
    (reply (1 literal))
  }
])

(def main [
  ((1 integer) <- factorial (5 literal))
  (print-primitive ("result: " literal))
  (print-primitive (1 integer))
  (print-primitive ("\n" literal))
])