aboutsummaryrefslogtreecommitdiff
path: root/go-src/main.go
blob: f06b1ffe48a404d9ac914f157f5334ccad399d2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package main

import "fmt"

func main() {
	// Temporary values for testing purposes
	fmt.Println(errorBox("Test error"))
	fmt.Println(normalBox(true, "Page 1"))
	fmt.Println(normalBox(false, "Page 1", "Page 2"))
	fmt.Println(normalBox(true, "af", "Page dfsdf", "fd ffdfs dfsdf sd Page 3", "A"))
}