Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make it possible to include clojurers as a library #74

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#[macro_use]
extern crate nom;
extern crate itertools;

#[macro_use]
pub mod persistent_list_map;
#[macro_use]
pub mod persistent_list;
#[macro_use]
pub mod protocol;
#[macro_use]
pub mod symbol;
#[macro_use]
pub mod var;
pub mod clojure_std;
pub mod clojure_string;
pub mod environment;
pub mod error_message;
pub mod ifn;
pub mod iterable;
pub mod keyword;
pub mod lambda;
pub mod maps;
pub mod namespace;
pub mod persistent_vector;
pub mod protocols;
pub mod reader;
pub mod repl;
pub mod rust_core;
pub mod traits;
pub mod type_tag;
pub mod user_action;
pub mod util;
pub mod value;
5 changes: 3 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,16 @@ mod lambda;
mod maps;
mod namespace;
mod persistent_vector;
mod protocols;
mod reader;
mod repl;
mod rust_core;
mod traits;
mod type_tag;
mod user_action;
mod util;
mod value;
mod protocols;
mod traits;

fn main() {
let cli_args: user_action::Action = user_action::parse_args(std::env::args().collect());

Expand Down