Learning GO

This commit is contained in:
Zakaria
2026-08-31 14:57:35 -04:00
commit d307eb2698
19 changed files with 310 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package main
import (
"fmt"
"hello"
"os"
)
func main() {
fmt.Println(hello.Say(os.Args[1:]))
}