println
println(g_value[p_outputPort] ) => nil
Description
Prints a SKILL object using the default format for the data type of the value, then prints a newline character.
A newline character is automatically printed after printing g_value. println flushes the output port after printing each newline character.
Arguments
Value Returned
Examples
for( i 1 3 println( "hello" )) ;Prints hello three times.
"hello"
"hello"
"hello"
=> t ;for always returns t
Related Topics
Return to top