var mbs = "hello" var wcs = "道语言" # verbatim strings: var mbs2 = @[] some text @[] # C++ codes in MBS: var cpp = @[cpp x] class AA { int index; }; struct BB{}; @[cpp x] # Lua codes in MBS: var lua = @[lua] local a = 1; function Test() io.write( "Hello" ) end @[lua] # HTML codes in WCS: var html = @[html:123456] @[html:123456] io.writeln( mbs ); io.writeln( wcs ); io.writeln( mbs2 ); io.writeln( cpp ); io.writeln( lua ); io.writeln( html );