Compare commits

...

2 Commits

Author SHA1 Message Date
Jacob Delgado
3bfcb6c51b Merge branch 'master' of https://gitea.arufalab.com/ImAlpha/Portfolio 2024-03-24 19:17:17 -07:00
Jacob Delgado
bfeb2599f6 golang hello world 2024-03-24 19:17:16 -07:00

11
Golang/HelloWorld.go Normal file
View File

@ -0,0 +1,11 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
for i := 0; i < 10; i++ {
fmt.Println(i)
}
}