@@ - luxembourg/muxcode-clm GitHub Wiki

@@()

FUNCTION: @@(<text>)

The <text> is not evaluated and returns nothing.

Example: > think @@(pemit(me,Hello)) > think @@(abc)

Related Topics: @@, null

or, more commonly, writing comment headers for softcode installers (such as /quotable text files). Note that @@ must be followed by a space or it will return an error message.

Always be doubly sure that ()'s and {}'s in the (otherwise ignored) arguments are nested correctly, so that any semicolons used to separate it from subsequent code in the line are recognized by the parser.

Example: > @va me=$foobar *:@fo #1234=%0;@@ This controls my foobar puppet. > foobar say Hello World! foobar says "Hello World!" > @@ --- Begin Code --- > @emit Hello World! > @@ --- End Code --- Hello World!

Related Topics: think, @@, null