View Single Post
  #4  
Old 08-06-2014, 11:26 PM
demonstar55
Demi-God
 
Join Date: Apr 2008
Location: MA
Posts: 1,164
Default

Semi-colons ( ; ) are optional in lua (only required if you want to do multiple statements on a single line.)
Also these are all equivalent (as they are with Perl)

Code:
eq.say_link("materials", false, "materials")
eq.say_link("materials", false)
eq.say_link("materials")
Reply With Quote