Guest User

Untitled

a guest
May 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. ## Java
  2. public class HelloWorld
  3. {
  4. public static void main(String args[])
  5. {
  6. int i;
  7. for (i=0;i<10;i++)
  8. {
  9. System.out.println("Hello Club");
  10. }
  11. }
  12. }
  13. ## Ruby
  14. require "java"
  15.  
  16. class HelloWorld
  17. include_package "java.lang"
  18.  
  19. def self.main(args)
  20. i = 0
  21. while i < 10
  22. System.out.println("Hello Club")
  23. (i += 1)
  24. end
  25. end
  26. end
  27.  
  28. HelloWorld.main($*)
Add Comment
Please, Sign In to add comment