https://github.com/dckc/capper-mt
https://github.com/dckc/capper-mt
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dckc/capper-mt
- Owner: dckc
- Created: 2017-09-04T04:12:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-12T05:24:04.000Z (over 8 years ago)
- Last Synced: 2025-10-12T10:50:34.002Z (2 months ago)
- Language: E
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Porting Notes
- docstrings: converted to `#` style with an emacs emacs keyboard
macro using comment-region
- ISSUE: how to convert to monte docstrings?
- def -> object
- comment out DEBuilderOf module decl
- :[g1, g2] -> :Pair[g1, g2]
- :generic(g) -> :generic[g]
- :g[] -> :List[g]
- :(g1 | g2) -> :Any[g1, g2]
- -> scheme_uriGetter("rest")
- def N := ->
import "rest" =~ [=>N :DeepFrozen]
- for pat in expr -> for pat in (expr)
- datatype names: capitalize int, char;
float64 -> Double, String -> Str, boolean -> Bool
- guard names: capitalize any, near, void, nullOk
- syntax helpers: one `_` for `__makeList`, `__makeInt`
- E.toQuote -> M.toQuote
- TODO: E.call(rx, verb, args) to M.call(rx, verb, args, nargs)