Guest User

Untitled

a guest
Dec 9th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. function MyFunction()
  2.     print("No need for semi colons here")
  3.     local a = 3
  4.     local b = a^2
  5. end
  6.  
  7. function MyFunction() print("Use semi colons here"); local a = 3; local b = a ^ 2; end
Add Comment
Please, Sign In to add comment