General Hello World First post on the blog Welcome to the blog! Here’s a quick code sample to see how things look: 1 2 3 4 5 6 7 def hello(): message = "Hello, World!" print(message) return message if __name__ == "__main__": hello() And some Go: 1 2 3 4 5 6 7 package main import "fmt" func main() { fmt.Println("Hello, World!") } More posts coming soon.