Added framework for experimenting using Go.
[surreal-numbers] / chapter-1-experiments / ch1-breeding-numbers.go
CommitLineData
24271b43
AT
1// (c) 2020 Aaron Taylor <ataylor at subgeniuskitty dot com>
2// See LICENSE.txt file for copyright and license details.
3
4package main
5
6import (
7 "fmt"
8)
9
10func main() {
11 fmt.Println("Hello, World!")
12}