1
0
mirror of https://github.com/Adorable-Catgirl/LuaComp.git synced 2024-09-29 07:00:58 +10:00
LuaComp/examples/macro2.lua

8 lines
197 B
Lua

@[[function my_macro(a, b)]]
print("Hello, @[{a}]. Your lucky number is @[{b}].")
@[[end]]
@[[my_macro("world", 7)]]
@[[my_macro("user", 42)]]
@[[my_macro("Earth", 0)]]
@[[my_macro("Satna", 666)]]