Update main crate to 2018 edition

This commit is contained in:
Greg Shuflin 2021-10-07 01:30:30 -07:00
parent c9a4c83fce
commit c92e88900c
2 changed files with 1 additions and 6 deletions

View File

@ -2,6 +2,7 @@
name = "schala"
version = "0.1.0"
authors = ["greg <greg.shuflin@protonmail.com>"]
edition = "2018"
[dependencies]

View File

@ -1,9 +1,3 @@
extern crate schala_repl;
//extern crate maaru_lang;
//extern crate rukka_lang;
//extern crate robo_lang;
extern crate schala_lang;
use schala_repl::{ProgrammingLanguageInterface, start_repl};
extern { }