Skip to content

Commit

Permalink
chore: init lang crate
Browse files Browse the repository at this point in the history
  • Loading branch information
rvcas committed Aug 8, 2022
1 parent 7f1ffd8 commit 3bff147
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,2 +1,2 @@
[workspace]
members = ["crates/cli", "crates/flat", "crates/uplc"]
members = ["crates/*"]
8 changes: 8 additions & 0 deletions crates/lang/Cargo.toml
@@ -0,0 +1,8 @@
[package]
name = "aiken-lang"
version = "0.0.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
8 changes: 8 additions & 0 deletions crates/lang/src/lib.rs
@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}

0 comments on commit 3bff147

Please sign in to comment.