View Single Post
11/11/14, 09:45 PM   #7
katkat42
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 155
Yeah, pretty much the only other thing I would add is that LUA and its ilk bring new meaning to the term "loosely-typed." Variables don't have data types -- just the values stored within them do. So
Lua Code:
  1. local foo = true
  2. foo = 15
  3. foo = "Hello World!"
  4. foo = { "a", "b", "c" }
  5. foo = function() return 42 end
would cause no problems whatsoever.
  Reply With Quote