marianoguerra/pure-py/value does not have a README file
pub(all) enum StmtResult {
Assigns(HashMap[String, Value])
Returns(Value)
ResultAborts(Termination)
ResultStuck(String)
} derive(Debug)pub(all) enum Value {
None
Bool(Bool)
Int(BigInt)
Float(Double)
Str(String)
List(Array[Value])
Tuple(Array[Value])
Dict(Array[(String, Value)])
Lam(LamClosure)
Def(DefClosure)
Obj(ClassEntry, HashMap[String, Value])
ModStub(String)
Mod(String, HashMap[String, Value])
Class(ClassEntry)
Prim(Primitive)
} derive(Debug)fn float_mod(x : Double, y : Double) -> DoubleInstall
Download zipPurePy (a pure functional subset of Python 3.12): tokenizer, parser, checker and interpreter
Dependencies