git @ Cat's Eye Technologies Dipple / master csharp / test.cs
master

Tree @master (Download .tar.gz)

test.cs @masterraw · history · blame

// SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
// For more information, please refer to <https://unlicense.org/>
// SPDX-License-Identifier: Unlicense

using System;

namespace Blundie {
    class HelloWorld {
        static void Main() {
            Console.WriteLine("Hello, world!");
        }
    }
}