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#
using System;
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
}
}
In Swift.
println("Hello, world!")
In Go.
package main
import "fmt"
func main() {
fmt.Println("Hello, world!")
}