add new languege(golang)

This commit is contained in:
root 2026-05-12 22:51:25 +03:00
parent a5be3343ce
commit f936cad607
3 changed files with 10 additions and 1 deletions

3
go/.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
.vscode
.env
output

6
go/l1.go Normal file
View file

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