Product Documentation
Cadence SKILL Language Reference
Product Version IC23.1, November 2023

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

g_value

Any SKILL value.

p_outputPort

Port to be used for output. The default is poport.

Value Returned

nil

Prints the given object and returns nil.

Examples

for( i 1 3 println( "hello" ))    ;Prints hello three times.
"hello"
"hello"
"hello"
=> t   ;for always returns t

Related Topics

drain

print

newline


Return to top
 ⠀
X