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

info

info( 
t_formatString 
[ g_args1... ]
) 
=> nil 

Description

Prints the formatted output to poport according to the specification.

Arguments

r_formatString

Format specification string.

g_args

Arguments following the format string.

Value Returned

nil

Prints the argument value to poport.

Examples

info("Hello Skill") ; prints "Hello Skill"
Hello Skill
nil
info("value = %d" 42) ; prints value = 42
value = 42
nil

Return to top
 ⠀
X