Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. package main;
  2.  
  3. func main(){
  4. ;;;
  5. {};
  6. {a=1;};
  7. {{};a=1;{};};
  8. {a=1;b=2;}
  9. {{};a=1;{};b=2;{};}
  10. {a=1;b=2;c=3;{};d=4;e=5;}
  11. if 1{};
  12. if 2{}else{};
  13. if 3{a=1;}else{};
  14. if 4{a=1;b=2;}else{};
  15. if 5{a=1;}else{c=3;};
  16. if 6{a=1;b=2;}else{c=3;d=4;};
  17. if 7{}else{a=1;}
  18. if 8{}else{a=1;b=2;}
  19. for 1{}
  20. for 2{a=1;}
  21. for {}
  22. for {a=1;b=2;}
  23. return
  24. return 2;
  25. a1(1);
  26. a2(1,2);
  27. a3(1,2,3);
  28. arg,_ = strconv.Atoi(os.Args[3]);
  29. fmt.Println(1.0);
  30. fmt.Println("ola");
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement