ce1213a020
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
20 lines
246 B
Text
20 lines
246 B
Text
(*
|
|
cmd_macro("Simple",
|
|
{ macro_arg.String },
|
|
function (env, str)
|
|
print("OUTPUT: " .. str)
|
|
end
|
|
)
|
|
|
|
parse_lean_cmds([[
|
|
Simple "foo"
|
|
]])
|
|
*)
|
|
|
|
Simple "testing"
|
|
|
|
(*
|
|
parse_lean_cmds([[
|
|
Simple "bla"
|
|
]])
|
|
*)
|