print joe papa in csharp

To print "joe papa" in C#, you can use the Console.WriteLine statement as follows:

main.cs
Console.WriteLine("joe papa");
31 chars
2 lines

This will output "joe papa" on a new line in the console window. If you want to print it on the same line, you can use the Console.Write statement instead:

main.cs
Console.Write("joe papa");
27 chars
2 lines

This will output "joe papa" on the same line in the console window.

gistlibby LogSnag