Advertisement
WeltEnSTurm

Untitled

Oct 10th, 2016
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1.  
  2.  
  3. pass = fn a:
  4. return $a
  5.  
  6.  
  7. each (range 2000):
  8. echo test with pancakes
  9.  
  10. param = fn x:
  11. echo $x
  12.  
  13. param test
  14.  
  15.  
  16. indent = fn a:
  17. b = pass $a
  18. inner = fn:
  19. echo inner worked $a
  20. inner
  21. echo sup guys $b
  22. return $b
  23.  
  24. echo (indent aa)
  25.  
  26. echo (+ 512.3 2)
  27.  
  28.  
  29. num = pass 1
  30.  
  31. add = fn:
  32. num = + $num 1
  33.  
  34.  
  35. add
  36. echo 1 $num
  37. add
  38. echo 2 $num
  39. add
  40. echo 3 $num
  41. add
  42. echo 4 $num
  43.  
  44. echo hi (range 200) there
  45.  
  46. each i in (range 2000):
  47. echo $i
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement