ASCII Art Box
Print a simple box using characters.
package main
import "fmt"
func main() {
fmt.Println("+----------------+")
fmt.Println("| Go from Zero |")
fmt.Println("+----------------+")
}Print a simple box using characters.
package main
import "fmt"
func main() {
fmt.Println("+----------------+")
fmt.Println("| Go from Zero |")
fmt.Println("+----------------+")
}Copy the code above and paste to run