Skip to content

Instantly share code, notes, and snippets.

View shilohooo's full-sized avatar
🎯
Focusing

shiloh shilohooo

🎯
Focusing
View GitHub Profile
@shilohooo
shilohooo / HelloWorld.cs
Created June 13, 2024 09:10
Hello World in many programming languages:)
namespace HelloWorld;
internal class HelloWorld {
static void Main(string[] args) {
Console.WriteLine("Hello World!");
}
}