20 lines
375 B
Go
20 lines
375 B
Go
package day24
|
|
|
|
import "testing"
|
|
|
|
func TestPrintJustSymbol(t *testing.T) {
|
|
t.Log(SystemsWithSymbols())
|
|
}
|
|
|
|
func TestPrintSystemExample(t *testing.T) {
|
|
filename := "example"
|
|
hails := ReadHailFile(filename)
|
|
t.Log(SystemAsPythonInit(hails))
|
|
}
|
|
|
|
func TestPrintSystemInput(t *testing.T) {
|
|
filename := "input"
|
|
hails := ReadHailFile(filename)
|
|
t.Log(SystemAsPythonInit(hails))
|
|
}
|