Console.WriteLine
Skip to content
mnscript
Console.WriteLine(any) 

Description ​

Writes a line of text to the terminal console

Arguments ​

any - The text to output

Example ​

msc
using Console;

// Prints "Hello World" on the terminal console.

Console.WriteLine("Hello World");