mirror of
https://github.com/bootdotdev/fcc-learn-golang-assets.git
synced 2025-12-10 07:11:19 +00:00
15 lines
160 B
Go
15 lines
160 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func test(text string) {
|
|
fmt.Println(text)
|
|
}
|
|
|
|
func main() {
|
|
test("starting Mailio server")
|
|
test("stopping Mailio server")
|
|
}
|