Hey folks (because “Hello World” was too cliché)!
I’m Dylan Green, also known as DylanGTech, and I’m from Upstate New York. I’ve been writing software since I was 14 years old. My specialties include server-side development and low-level software, but I have had various experiences in a plethora of areas. My goal is to create the future through my work. This website serves as a host of my project, as well as a blog for aspiring developers from young-to-old. Feel free to check out my work, and get ahold of me anywhere!
using System;
// Hello World! program
namespace HelloWorld
{
class Program {
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}