initial commit

This commit is contained in:
Kat Marchán 2020-12-10 18:42:50 -08:00
commit a8475fd2c7
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
Cargo.lock

5
Cargo.toml Normal file
View File

@ -0,0 +1,5 @@
[package]
name = "kdl"
version = "0.0.0"
authors = ["Kat Marchán <kzm@zkat.tech>"]
edition = "2018"

7
src/lib.rs Normal file
View File

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}