Advertisement
KodingKid

Basic String and Int in Lua - Basic Scripting #3

May 17th, 2021
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.14 KB | None | 0 0
  1. a = "This is my first variable (Lua doesn't really have strings)"
  2. b = 1 --Lua doesn't really have integers either
  3. print(a)
  4. print(b)
  5. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement