Skip to content

Instantly share code, notes, and snippets.

@taowen
Created October 20, 2018 06:30
Show Gist options
  • Save taowen/89b771f225ff7010aa40ddb583f4ee3d to your computer and use it in GitHub Desktop.
Save taowen/89b771f225ff7010aa40ddb583f4ee3d to your computer and use it in GitHub Desktop.
future in lua created by taowen - https://repl.it/@taowen/future-in-lua
function some_important_business_process(a, b)
result = a + b
c = 3
result = result * c
return result
end
result = some_important_business_process(1, 2)
print(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment