Add c, sh, bash, python, and go

This commit is contained in:
2020-11-26 21:14:28 -06:00
parent d1f852f46d
commit 7ecf637b86
7 changed files with 856 additions and 0 deletions

8
go.go Normal file
View File

@ -0,0 +1,8 @@
package main
import "fmt"
func main() {
for i := 0; i < 6; i++ {
fmt.Printf("Hello world, %d\n", i)
}
}