Guest User

Untitled

a guest
Feb 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. var a = 0
  2. out " Enter your name : "
  3. in a
  4. out " Your Name is : "
  5. out a
  6. exit
  7. -----------
  8.  
  9. var a = 0
  10. out " Gimme a number and your soul: "
  11. in a
  12. var b = 10
  13. b = b * a
  14. b ++
  15. out " We take that number, times it by 10, and add one and the result is : "
  16. out a
  17. exit
  18.  
  19. -------
  20. var a = bob
  21. var b = 0
  22. out " What is my name?: "
  23. in b
  24. compare a b
  25. goto :x if true
  26. goto :y if false
  27. :x
  28. out " That's correct!!! "
  29. exit
  30. :y
  31. out " Try again you noob "
  32. exit
Add Comment
Please, Sign In to add comment