Print hello world

This commit is contained in:
Daniel Cosme
2026-02-13 13:28:32 -05:00
parent 918d8d25b8
commit 474e63713d
3 changed files with 15 additions and 0 deletions

7
main.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello world")
}