Guest User

Untitled

a guest
Apr 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. # A comment
  2. print "Hello World"
  3. var aVariable = 1
  4. specialCommand1 subCommand1 input1, input2, input3
  5. #Get user input
  6. inputCommand stringVariable
  7. goFunc aFunction
  8. if aVariable == 1
  9. aVariable = 2
  10. run anotherScript
  11. else
  12. aVariable = 3
  13. endif
  14.  
  15. aFunction
  16. aVariable = 3
  17. return
  18.  
  19. print "Hello World"
  20.  
  21. void PrintFunction(std::string message)
  22. {
  23. std::cout << message << std::endl;
  24. }
Add Comment
Please, Sign In to add comment