diff options
| author | Yuval Adam <_@yuv.al> | 2022-07-17 11:10:26 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2022-07-17 11:10:26 +0300 |
| commit | 7b0319a4851c58d4234110cdf9497135ce99b2a7 (patch) | |
| tree | b5c5df743cd103ee6322bd9b24b50d1dc6b1c8e0 /src/lib.rs | |
Initial project structure with bindgen
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..1b4a90c --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,8 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + let result = 2 + 2; + assert_eq!(result, 4); + } +} |
