Hello world

Hello world

This is my first post after a long time wanting to start a blog

In most programming books the author attempts to appease the programming gods by printing a small sacrifice, usually ‘hello world’.

Here is my attempt to appease the programming gods.

In C#

1
2
3
4
5
6
7
8
using System;
class Program
{
    public static void Main(string[] args)
    {
        Console.WriteLine("Hello, world!");
    }
}

In Swift.

1
println("Hello, world!")

In Go.

1
2
3
4
5
6
7
package main

import "fmt"

func main() {
  fmt.Println("Hello, world!")
}
This post is licensed under CC BY 4.0.