Example #1
0
 public object EvlString(string str, EnviromentFrame env)
 {
     return(VirtualMashine.Eval(Compiler.Compile(str), env));
 }
Example #2
0
 public object EvlSeq(Cons seq, EnviromentFrame env)
 {
     return(VirtualMashine.Eval(Compiler.Compile(seq), env));
 }
Example #3
0
 public object EvlSeq(Cons seq, EnviromentFrame env, bool isWithMacro = true)
 {
     return(VirtualMashine.Eval(isWithMacro ? Compiler.Compile(MacroSystem.MacroProcessing(seq)) : Compiler.Compile(seq), env));
 }