Guest User

Untitled

a guest
Feb 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. ## Don't be fooled by the code that I block ##
  2.  
  3. # Don't be fooled by
  4.  
  5. def fooled
  6. result = "Don't be fooled by \n"
  7. return result
  8. end
  9.  
  10. # The rocks that I've got
  11.  
  12. def rocks
  13. result = "The rocks that I've got \n"
  14. return result
  15. end
  16.  
  17. # I'm still, I'm still
  18.  
  19. def imStill
  20. result = "I'm still \n" * 2
  21. return result
  22. end
  23.  
  24. # Jenny from the block
  25.  
  26. def jenny(name)
  27. result = name + " from the block \n"
  28. return result
  29. end
  30.  
  31. # Used to have a little now I have a lot
  32.  
  33. def usedta
  34. result = "Used to have a little now I have a lot \n"
  35. return result
  36. end
  37.  
  38. # But no matter where I go
  39.  
  40. def nomatta
  41. result = "But no matter where I go \n"
  42. return result
  43. end
  44.  
  45. # I still no where I came from
  46.  
  47. def something
  48. result = "I still know where I came from \n"
  49. return result
  50. end
  51.  
  52. puts fooled
  53. puts rocks
  54. puts imStill
  55. puts jenny("Jenny")
  56. puts usedta
  57. puts nomatta
  58. puts something
Add Comment
Please, Sign In to add comment