June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
|
|
@ -7,3 +7,7 @@ multi A(3, Int \𝑛) { 5 + 8 * (2 ** 𝑛 - 1) }
|
|||
|
||||
multi A(Int \𝑚, 0 ) { A(𝑚 - 1, 1) }
|
||||
multi A(Int \𝑚, Int \𝑛) { A(𝑚 - 1, A(𝑚, 𝑛 - 1)) }
|
||||
|
||||
# Testing:
|
||||
say A(4,1);
|
||||
say .chars, " digits starting with ", .substr(0,50), "..." given A(4,2);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue