Prints the supplied items, followed by a newline.
:-) println( 56 );
56
There are 0 results
The println function prints a newline after it's finished
printing the specified items. If you don't want the newline
at the end use print instead.
Supplied items are displayed in different ways, depending on their type. The way different types are printed is as follows:
:-) println( absent );
There are 0 results
:-) println( 56 );
56
There are 0 results
:-) showln( "hello" );
hello
There are 0 results
:-) println( 'a' );
a
There are 0 results
true or false, e.g.
:-) println( true );
true
There are 0 results
:-) println( false );
false
There are 0 results
println's newline is printed at the end of the list, e.g.
:-) println( { "this", "is", "a", "list" } );
thisisalist
There are 0 results
:-) println( "hello" ==> "there" );
org.millscript.millscript.Maplet@1d63e39
There are 0 results
:-) println( newMap( "hello" ==> "there", "a" ==> "map" ) );
{a=map, hello=there}
There are 0 results
:-) println( println );
<function println>
There are 0 results
:-) function f( x ) => x endfunction;
There are 0 results
:-) println( f );
<function f(1)>
There are 0 results