| Prints a string to stdout followed by a newline |
| Declaration: |
| function println( string s ) |
| Description: |
| Unlike, print, you don't need to send a \n. This function can take any type of variable and will automagically convert it into a string. |
| Parameters: |
| Parameter #1: string s - The string |
| Example: |
Console.println( "Hi!" )
|