Action disabled: source
blog:2023-07-04_golang_on-line_go_lang_compiler
2023-07-04 GoLang: On-Line Go Lang Compiler
Test Code
// Online Go compiler to run Golang program online
// Print "Hello World!" message
package main
import "fmt"
func main() {
Count()
fmt.Println("Hello World!")
}
func Count() {
for i :=0; i < 10; i++ {
fmt.Println(i)
}
}
-
Link
blog/2023-07-04_golang_on-line_go_lang_compiler.txt · Last modified: 2023/07/04 13:35 (external edit)