schala/schala-repl/src/lib.rs

22 lines
524 B
Rust
Raw Normal View History

2021-10-07 00:51:45 -07:00
#![feature(box_patterns, box_syntax, proc_macro_hygiene, decl_macro)]
2017-10-30 20:06:20 -07:00
#![feature(plugin)]
2018-03-20 20:29:07 -07:00
2017-10-30 20:06:20 -07:00
#[macro_use]
extern crate serde_derive;
extern crate includedir;
extern crate phf;
2021-10-07 01:19:35 -07:00
extern crate serde_json;
2017-10-30 20:06:20 -07:00
mod language;
2021-10-07 01:19:35 -07:00
mod repl;
2017-10-30 20:06:20 -07:00
2021-10-07 01:19:35 -07:00
pub use language::{
ComputationRequest, ComputationResponse, DebugAsk, DebugResponse, GlobalOutputStats,
LangMetaRequest, LangMetaResponse, ProgrammingLanguageInterface,
};
2021-10-14 00:56:01 -07:00
pub use repl::Repl;
include!(concat!(env!("OUT_DIR"), "/static.rs"));
const VERSION_STRING: &'static str = "0.1.0";