Test

Test

1 min read - 24 Feb, 2025

Heading 1

Heading 2

Heading 3

This is a paragraph

"Any program can be regarded as simply an adequate description of a process, and it's this process which one should really discuss."

- Alan Turing, "Computing Machinery and Intelligence" (1950)


using System;

class SimpleMath
{
    static void Main()
    {
        int x = 5;
        int y = 3;

        Console.WriteLine("The sum of {0} and {1} is {2}.", x, y, x + y);
        Console.WriteLine("The difference between {0} and {1} is {2}.", x, y, x - y);
        Console.WriteLine("The product of {0} and {1} is {2}.", x, y, x * y);
    }
}


Published Monday, 24 February 2025