To print "joe papa" in C#, you can use the Console.WriteLine statement as follows:
main.cs31 chars2 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.cs27 chars2 lines
This will output "joe papa" on the same line in the console window.
gistlibby LogSnag