Hello World, this is my first blog post for this new site.

Hello world written in a few programming languages:

Go

package main

import "fmt"

func main() {
    fmt.Println("hello, world")
}

Java

public class HelloWorld {
  public static void main(String[] args) {
    System.out.println("hello, world");
  }
}

Python

print("hello, world")