MAIN DEFINE my_int INTEGER DEFINE my_str STRING LET my_int = 100 LET my_str = NULL --With USING DISPLAY "1=TESTA" || my_int USING "<<<<<<<&" DISPLAY "2=TESTB", my_int USING "<<<<<<<&" --With NULL DISPLAY "3=TESTA-" || my_str || "-" DISPLAY "4=TESTB-", my_str , "-" END MAIN
FUNCTION my_func() DEFINE a,b,c STRING RETURN a+b+c END FUNCTION
FUNCTION my_func() DEFINE a,b,c STRING RETURN SFMT("%1%2%3",a,b,c) END FUNCTION
--With USING DISPLAY "1=TESTA" || my_int USING "<<<<<<<&" DISPLAY "2=TESTB", my_int USING "<<<<<<<&" DISPLAY SFMT("?=TESTC%1", my_int USING "<<<<<<<&") --With NULL DISPLAY "3=TESTA-" || my_str || "-" DISPLAY "4=TESTB-", my_str , "-" DISPLAY SFMT("?=TESTC-%1-", my_str)
MAIN DEFINE my_int INTEGER DEFINE my_str STRING LET my_int = 100 LET my_str = NULL DISPLAY SFMT("a=this is a test", " of a multiline string: %1",my_int USING "<<<<<<<&") DISPLAY SFMT("b=this is a test", " of a multiline string: [%1]",my_str) DISPLAY SFMT("c=this is a test" || " of a multiline string: %1",my_int USING "<<<<<<<&") DISPLAY SFMT("d=this is a test" || " of a multiline string: [%1]",my_str) END MAIN
DISPLAY "1=TESTA" || (my_int USING "<<<<<<<&")
LET x = a || b USING "<<<"
LET x = (a || b) USING "<<<"