mirror of
https://github.com/bootdotdev/fcc-learn-golang-assets.git
synced 2025-12-10 07:11:19 +00:00
10 lines
185 B
Go
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")
|
|
}
|