standardOutput <- print("Hello ") @
standardOutput <- print("World");
|
standardOutput <- print("Hello ");
standardOutput <- print("World");
|
// returnHello() is defined as the follows:
// String returnHello() {return "Hello";}
returnHello() @ standardOutput <- println(token);
|
// combineStrings() is defined as follows:
// String combineStrings(String str1, String str2)
// {return str1+str2;}
returnHello() @
combineStrings(token, " World") @
standardOutput <- println(token);
|