function

print . string . sncode

VERSIONlatest Output a string.

PRINT

NAME

print - Outputs a string.

SYNOPSIS

print(args, [ sort : true|false] )

PARAMETERS

arg
The input data.

RETURN

This function returns the entered value. If the "sort" argument is defined to be true, associative array will be sorted when printed.

EXAMPLES

Note: In the followings examples, the _ between the { should be removed to make it work.

res={_{print("this is a string", "another")}}. return res=this is a stringanother.
res={_{print(sort:true,"this is a string", "another")}}. return res=this is a stringanother.
res={_{print(sort:true,"this is a string", {"1":1,"2":2})}}. return res=this is a string{"1":1,"2":2}.

AUTHOR

Written by Pusnei Sergey and Caroline Laplante, <sergey@sednove.com>