You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
566 B
27 lines
566 B
1 year ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"log"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
log.Println("Current module is still under development.")
|
||
|
message := `
|
||
|
Current module is still under development.
|
||
|
|
||
|
____ _____ __ __
|
||
|
/ __ \ |_ _|| \/ |
|
||
|
| | | | _ __ ___ _ __ | | | \ / |
|
||
|
| | | || '_ \ / _ \| '_ \ | | | |\/| |
|
||
|
| |__| || |_) || __/| | | | _| |_ | | | |
|
||
|
\____/ | .__/ \___||_| |_||_____||_| |_|
|
||
|
| |
|
||
|
|_|
|
||
|
|
||
|
Keep checking for updates!
|
||
|
`
|
||
|
|
||
|
fmt.Println(message)
|
||
|
}
|