add new languege(golang)
This commit is contained in:
parent
a5be3343ce
commit
f936cad607
3 changed files with 10 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,3 +1,3 @@
|
|||
.vscode
|
||||
.env
|
||||
output
|
||||
output
|
||||
|
|
|
|||
3
go/.gitignore
vendored
Normal file
3
go/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
.vscode
|
||||
.env
|
||||
output
|
||||
6
go/l1.go
Normal file
6
go/l1.go
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
package main
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("hello world")
|
||||
}
|
||||
Loading…
Reference in a new issue