add inner (of lists) type, add floor, ceil, and roundd standard functions, and a ton of examples
This commit is contained in:
parent
5bcab07681
commit
efbe5a9f97
20 changed files with 330 additions and 46 deletions
|
|
@ -1,4 +1,4 @@
|
|||
list := []
|
||||
list := []number
|
||||
|
||||
x := 1
|
||||
while x <= 1000 {
|
||||
|
|
@ -14,7 +14,7 @@ func sum(a: number, b: number) number {
|
|||
return a + b
|
||||
}
|
||||
|
||||
list = []
|
||||
list = []number
|
||||
x = 1
|
||||
while x <= 100 {
|
||||
list.append(2*x - 1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue