Advertisement
Ruslan_Isaev

squarecalculator

Apr 29th, 2016
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. --square  calculator
  2. info=[[
  3. Rectangle  square  calculator  by  Ruslan  Isaev  (c)2016
  4. ]]
  5. print(info)
  6. print("")
  7. print("Type  x  size")
  8. sizex=io.read()
  9. print("Type  y  size")
  10. sizey=io.read()
  11. print("SQUARE:  "..sizex*sizey)
  12. print("")
  13. print("Thanks  for  using")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement