Function.basic 170 B

12345678910111213141516
  1. function wusi()
  2. printLine("hi there")
  3. printLine("great")
  4. end
  5. wusi()
  6. gusi()
  7. gusi()
  8. wusi()
  9. function gusi()
  10. printLine("baum")
  11. printLine("wow")
  12. end
  13. gusi()