https://github.com/shawsumma/tachvm
functional tachyon
https://github.com/shawsumma/tachvm
Last synced: 10 months ago
JSON representation
functional tachyon
- Host: GitHub
- URL: https://github.com/shawsumma/tachvm
- Owner: ShawSumma
- Created: 2018-03-27T02:17:18.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-25T02:21:01.000Z (about 8 years ago)
- Last Synced: 2025-03-26T12:47:52.608Z (about 1 year ago)
- Language: Python
- Size: 33.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tachVM
functional tachyon
tachyon is a functional language that uses python standard library
it is not purely functional, because of python interop
here is a taste
```
//this is tachyon
fac(x) = fac(x-1)*x
fac(0) = 1
curry_me_add(x,y) = x+y
next = curry_me_add(1)
print(next(10))
```