// ******************************************************************************************************************** // AnyASM Sample - The assembled version of "Hello World.AnyScript" // This just prints "Hello World" to the screen // Created: 2007-02-20 // Last Modified: 2007-03-13 // by Mark Ormston Region Code //Nothing Main() { Function Main() Format C, Returns Nothing; //Print("Hello world!\n"); Call Base.Print@StringMem(&@@Const_String0); //} // Main @@Label_Main_EndFunction: EndFunction; Region Constants VarConstant StringMem @@Const_String0 = "Hello world!" STRINGLITERAL_NEWLINE;