Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- pre
- ---START---
- #define define_function(#func_name,#inline_string,#string,") function #func_name() return "this is a #inline_string" .. #string end
- define_function(MyFunc,hellodefine " .. " this is : ,"mmm",')
- print(MyFunc())
- ---END---
- -- post
- ---START---
- function MyFunc() return 'this is a hellodefine ' .. ' this is : ' .. 'mmm' end
- print(MyFunc())
- ---END---
Advertisement
Add Comment
Please, Sign In to add comment