Advertisement
BobMe

I got bored again at school:1

Feb 19th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function generatestairs(x,y,t)
  2. xg = ""
  3. yg = ""
  4. xr=x
  5. yy=0
  6. while yy <= y do
  7. for h=1,xr do
  8. xg = xg.."#"
  9. end
  10. for i=1,t do
  11. print(xg)
  12. end
  13. x=x+(math.floor(x/2))
  14. yy=yy+1
  15.  
  16. end
  17. end
  18.  
  19. generatestairs(9,4,2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement