A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
6
Task/Loops-For/Ela/loops-for.ela
Normal file
6
Task/Loops-For/Ela/loops-for.ela
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
open console
|
||||
|
||||
loop m n | n < m = loop' n 0 $ writen "" $ loop m (n+1)
|
||||
| else = ()
|
||||
where loop' m n | n <= m = write "*" $ loop' m (n+1)
|
||||
| else = ()
|
||||
Loading…
Add table
Add a link
Reference in a new issue