diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-10-14 23:05:16 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-10-14 23:05:16 -0700 |
commit | fcc026dec1b6193c187a917e310b52c47b918029 (patch) | |
tree | 1d12b0483d0323114c190de926068867b0a2bc0b | |
download | casual-fcc026dec1b6193c187a917e310b52c47b918029.tar.gz casual-fcc026dec1b6193c187a917e310b52c47b918029.zip |
init repo with README and gitignore
-rw-r--r-- | .gitignore | 21 | ||||
-rw-r--r-- | README.md | 4 |
2 files changed, 25 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..81a4762 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +*.o +*.a +*.pyc +#*# +*~ +*.swp +.* +*.tmp +*.old +*.profile +*.bkp +*.bak +[Tt]humbs.db +*.DS_Store +build/ +_build/ +src/build/ +*.log + +# Don't ignore this file itself +!.gitignore diff --git a/README.md b/README.md new file mode 100644 index 0000000..5bf694d --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ + +Small, hobby/learning Computer Algebra System (CAS), using schema/s-expression +syntax, implemented in Rust. + |