parte 1, package

This commit is contained in:
2026-02-06 12:37:51 +01:00
parent b28fd004d2
commit 306aab2b33
2 changed files with 12 additions and 0 deletions

View File

@@ -1,2 +1,5 @@
# curso-goland
https://www.youtube.com/watch?v=ID9NZ88JeOE
1. (00:04:58) Package

9
main.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello, World!")
}