mirror of
https://github.com/bootdotdev/fcc-learn-golang-assets.git
synced 2025-12-16 02:01:16 +00:00
first
This commit is contained in:
14
course/12-local_development/exercises/1-intro/code.go
Normal file
14
course/12-local_development/exercises/1-intro/code.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package mailio
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func test(text string) {
|
||||
fmt.Println(text)
|
||||
}
|
||||
|
||||
func main() {
|
||||
test("starting Mailio server")
|
||||
test("stopping Mailio server")
|
||||
}
|
||||
Reference in New Issue
Block a user