Advertisement
Ibnballo

Untitled

Oct 14th, 2023
1,540
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.22 KB | Source Code | 0 0
  1. def aping_bpong
  2.   (1..100).each do |nums|
  3.     if nums % 15 == 0
  4.       puts 'APINGBPONG'
  5.     elsif nums % 5 == 0
  6.       puts 'BPONG'
  7.     elsif nums % 3 == 0
  8.       puts 'APONG'
  9.     else
  10.       puts nums
  11.     end
  12.   end
  13. end
Tags: Ruby
Advertisement
Comments
  • Tknumber1
    207 days (edited)
    # CSS 1.18 KB | 0 0
    1. idle game maker code Let's make a game!
    2. name: Game Dev Simulator
    3. by:Tknumber1
    4. desc: Make The Bet Game In The World To Be Famous In This Simple Idle Game
    5. created:10/14/2023
    6. version:0.0
    7.                        
    8. CSS
    9. #game.on
    10. {
    11.    background-size: 95% 95%;
    12.    image-rendering: pixelated;
    13. }
    14.  
    15.  
    16. .buildingIconSize
    17. {
    18.    height:64px;
    19.    width:64;
    20.    
    21. }
    22.  
    23. Settings
    24. background:https://file.garden/ZSs2KyDRyR84aPn-/Office%20Background%20wallpaper%20%20%201037369.png
    25. stylesheet:stuff/bigBlue.css
    26.  
    27.  
    28.  
    29. Buildings
    30. *Game|UE4
    31. name: bigGame|Games
    32. desc:A Bigger Game And One Of Your Biggest Games.
    33. on tick:yield 1 money
    34. cost:20 money
    35. icon class:buildingIconSize
    36. Icon:https://file.garden/YYjCqvtBp0P7hcN1/Coin%20Mania/Metal%20Detector.png
    37. *Helper|BUG
    38. name: worker|bugKiller
    39. desc:A Worker That Kills Bugs For U And Makes Your Games Better Which Means More Sells.
    40. on tick:yield 5 money
    41. cost:200 money
    42. Icon:https://file.garden/ZSs2KyDRyR84aPn-/R%20(9).png
    43.  
    44.  
    45.  
    46.  
    47.  
    48. Resources
    49. *money|money
    50. name: Money|Money
    51. desc:Use This To Buy Super Important Things.
    52.  
    53.  
    54.  
    55.  
    56. Buttons
    57. *smallGame
    58.     on click:yield 1 money
    59.     class:bigButton hasFlares
    60.    Icon:https://file.garden/YYjCqvtBp0P7hcN1/Coin%20Mania/coin.png
Add Comment
Please, Sign In to add comment
Advertisement