https://github.com/mojurasu/marin
https://github.com/mojurasu/marin
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mojurasu/marin
- Owner: mojurasu
- License: lgpl-3.0
- Created: 2021-09-04T00:31:38.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-28T01:09:12.000Z (over 3 years ago)
- Last Synced: 2025-02-10T12:45:44.728Z (4 months ago)
- Language: Rust
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# marin
## Running debug REPL
`cargo run --example repl`## Examples
### Positional Arguments
`1 2 3`
`arg1 arg2 arg3`### Keyword Arguments
`kw: 1`
`keywordarg: True`### Flags
`-flag1 -flag2`### Quoted Strings
`kw: "string with spaces`
`positional argument with spaces`### Ranges
`range: 1..10`
`1..10`
`..10`
`ids: -10..20`### Lists
`vals: ["val1", "val2"]`
`vals: [1, 2, 3]`
`[1,2,3]`