This commit is contained in:
Geir Okkenhaug Jerstad 2024-08-13 20:31:39 +02:00
commit f7443bbab9
30 changed files with 271 additions and 0 deletions

7
hello/helloworld.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("hello 世界")
}