about summary refs log tree commit diff stats
path: root/.gitignore
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-05-28 18:14:44 +0530
committerAndinus <andinus@nand.sh>2020-05-28 18:21:01 +0530
commitefce73b5198b70627da8580840d3de07c6947270 (patch)
tree5d66907146bd53e7de16644c7da6dcbfa76bea82 /.gitignore
parent010089b2acbbd493942a3ed66be911f908319b3e (diff)
downloadmyCovidCLI-efce73b5198b70627da8580840d3de07c6947270.tar.gz
Change module path
Diffstat (limited to '.gitignore')
0 files changed, 0 insertions, 0 deletions
vision' href='/akkartik/mu/blame/factorial.mu?h=hlt&id=2e3b597fe85b654e82b891c22d50754fa5a26156'>^
192d59d3 ^
77d5b5d6 ^
32241605 ^
b96af395 ^

9458918f ^
ce87c19e ^
1ead3562 ^
08b48a8d ^
c1d92c9d ^
192d59d3 ^

32241605 ^
b96af395 ^
08b48a8d ^
b96af395 ^


192d59d3 ^
b96af395 ^
bafc7192 ^
b96af395 ^


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
30
31
32
33

                                             
          
             
                      
                          


 
                                   
             
                  

                     
                            
                      
            
   
                             

                              
                                 
 
 


                         
                        
   
                         


            
# example program: compute the factorial of 5

def main [
  local-scope
  x:num <- factorial 5
  $print [result: ], x, [ 
]
]

def factorial n:num -> result:num [
  local-scope
  load-ingredients
  {
    # if n=0 return 1
    zero?:bool <- equal n, 0
    break-unless zero?
    return 1
  }
  # return n * factorial(n-1)
  x:num <- subtract n, 1
  subresult:num <- factorial x
  result <- multiply subresult, n
]

# unit test
scenario factorial-test [
  run [
    1:num <- factorial 5
  ]
  memory-should-contain [
    1 <- 120
  ]
]