package typdown import "testing" func TestParse(t *testing.T) { res, err := Parse("hello world") if err != nil { t.Fatal(err) } if res != `
hello world