diff --git a/code/helloworld.go b/code/helloworld.go new file mode 100644 index 0000000..7645697 --- /dev/null +++ b/code/helloworld.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main(){ + fmt.Printf("Hello, world.") + }