stutter-rs 0.1.1

A lisp made by Jacob Wunder to learn how to make programming languages
1
2
3
4
5
6
7
8
#![allow(unused_imports, unused_must_use, dead_code)]
use std::collections::HashMap;
use ast::types::*;
use eval::types::*;

pub fn init(scope: &mut HashMap<Symbol, Value>) {
    scope.insert( String::from("nothing"), Value::Null );
}