[Jass=]/*
* Display the following
*
* Print(string)
*/
/*
hello
my
my
my
*/
/*
-> I said "jump"
*/
/*
While "\" is awesome
Pickles are even more...
Awesome!
*/
//! runtextmacro Variables()
string a
string b
string c
//! runtextmacro Actions()
set a = "hello\n my\n my\n my"
set b = "I said \"jump\""
set c = "While \" \\ \" is awesome\n Pickles are even more...\n Awesome!"
call Print(a)
call TriggerSleepAction(3.00)
call Print(b)
call TriggerSleepAction(3.00)
call Print(c)
//! runtextmacro End_Code()[/code]
* Display the following
*
* Print(string)
*/
/*
hello
my
my
my
*/
/*
-> I said "jump"
*/
/*
While "\" is awesome
Pickles are even more...
Awesome!
*/
//! runtextmacro Variables()
string a
string b
string c
//! runtextmacro Actions()
set a = "hello\n my\n my\n my"
set b = "I said \"jump\""
set c = "While \" \\ \" is awesome\n Pickles are even more...\n Awesome!"
call Print(a)
call TriggerSleepAction(3.00)
call Print(b)
call TriggerSleepAction(3.00)
call Print(c)
//! runtextmacro End_Code()[/code]