Initial commit

This commit is contained in:
varunrmallya
2025-09-20 14:24:04 +05:30
committed by GitHub
commit f5eb8e18c2
24 changed files with 1512 additions and 0 deletions

7
tests/test_basic.py Normal file
View File

@ -0,0 +1,7 @@
import cmake_example as m
def test_main():
assert m.__version__ == "0.0.1"
assert m.add(1, 2) == 3
assert m.subtract(1, 2) == -1