How to create nested macro in BOO
- by Neo
Hi,
I am creating nested macros in BOO, I wrote this program:
macro text:
macro subMacro:
text["Text"] = "Hello World"
return [|
block:
System.Console.WriteLine( "Hello World" );
|]
But I am getting the error "Unknown Identifer: 'text'" in the 3rd line of the code.