Files
bootdotdev-fcc-learn-golang…/course/1-intro/exercises/1-learn_to_run_code/complete.go
wagslane 9be3074de6 first
2023-05-01 15:25:27 -06:00

10 lines
185 B
Go

package main
import "fmt"
func main() {
// single-line comments start with "//"
// comments are just for documentation - they don't execute
fmt.Println("starting Textio server")
}