Hello World
Welcome to my blog!
This website is powered by ASP.NET Core, authored in Markdown, and generated into static HTML for blazing-fast performance.
This is a great test post to ensure:
- Markdown works
- Syntax highlighting works
- TOC works
- Breadcrumbs work
- SEO works
Quick C# Hello World
Here's the classic example in C#:
using System;
public class Program
{
public static void Main()
{
Console.WriteLine("Hello, World from .NET Static Site!");
}
}