sexp

moon add bobzhang/sexp@0.1.2
Download zip
Author
Version
0.1.2
License
Apache-2.0
Last updated
3 months ago
Downloads
30
README

#Sexp library in MoonBit

#
Sexp

pub(all) enum Sexp {
Atom(String)
List(Sexp_list)
} derive(
Debug
)

sexp types
impl Show for Sexp

#
Sexp_list

pub(all) enum Sexp_list {
Nil
Cons(Sexp, Sexp_list)
} derive(
Debug
)

impl Show for Sexp_list

#
atom

fn atom(s : String) -> Sexp

#
cons

fn cons(head : Sexp, tail : Sexp_list) -> Sexp_list

#
list

fn list(xs : Sexp_list) -> Sexp

Source Files

Powered by MoonBit

Site sourceReport issuePackagesBuild queueSkillsStatistics

© 2026 mooncakes.io