Make parsed type private

This commit is contained in:
Lily Rose 2025-07-25 21:20:16 +10:00
parent c79e1310f2
commit 3c657d7991

View file

@ -21,7 +21,7 @@ pub type SExpr {
Name(String)
}
pub type Parsed(a) =
type Parsed(a) =
Result(#(a, BitArray), ParseError)
pub fn sexpr_to_pretty_string(sexpr: SExpr) -> String {