echo_cli multimethod

Methods

echo_cli(x:Any)experimental Source: stdlib.ngs:8898
Echo the value before exiting the program, when the value is a result of evaluating the whole program
echo_cli(x:Any)experimental Source: stdlib.ngs:8903
Echo the value as JSON before exiting the program, when the value is a result of evaluating the whole program
echo_cli(n:Null)experimental Source: stdlib.ngs:8910
Do nothing, when the value, which is a Null, is a result of evaluating the whole program
echo_cli(a:Arr)experimental Source: stdlib.ngs:8916
Echo the value as a table before exiting the program, when the value is a result of evaluating the whole program. Only works with TTY and when each element of the array is a Hash and all elements have the same keys.
echo_cli(h:Hash)experimental Source: stdlib.ngs:8928
Echo the value before exiting the program, when the value is a result of evaluating the whole program. Only works with TTY. Prints each key-value pair as "K: V" on its own line.
echo_cli(t:Time)experimental Source: stdlib.ngs:8936
Echo the value before exiting the program, when the value is a result of evaluating the whole program. Only works with TTY.
echo_cli(s:Str)experimental Source: stdlib.ngs:8942
Echo the value before exiting the program, when the value is a result of evaluating the whole program.