Hello!
Hello from JWRR. Using Jekyll for the 1st time instead of efefomatic. Not terribly impress yet.
Here is some Lua code:
function print_hi(name)
if name == "Paul" then
print("Hello, " .. name)
else
print("Hi, " .. name)
end
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.The same Lua code can be written on a single line without semicolons.
function print_hi(name) if name == "Paul" then print("Hello, " .. name) else print("Hi, " .. name) end end print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.Check out the JWRR docs for more info on how to get the most out of JWRR. File all bugs/feature requests at JWRR’s GitHub repo.