Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

functions.l2 207B

1234567891011121314151617181920212223242526
  1. func := {
  2. "hello"
  3. }
  4. print func()
  5. str := "Hello World"
  6. func := {
  7. {
  8. str
  9. }
  10. }
  11. print func()()
  12. func := {
  13. {
  14. str = $.0
  15. }
  16. }
  17. func() 10
  18. print str
  19. func := {
  20. retval := "what's up"
  21. {retval}
  22. }
  23. print func()()