Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/temperlang/rosettacodes
Some rosettacode.org problem implementations in Temper
https://github.com/temperlang/rosettacodes
Last synced: about 15 hours ago
JSON representation
Some rosettacode.org problem implementations in Temper
- Host: GitHub
- URL: https://github.com/temperlang/rosettacodes
- Owner: temperlang
- License: apache-2.0
- Created: 2023-08-30T17:24:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-04T16:25:03.000Z (9 months ago)
- Last Synced: 2024-11-11T00:16:33.255Z (about 2 months ago)
- Size: 30.3 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rosettacodes
Some rosettacode.org problem implementations in Temper
Each example is in its own directory which has the rosettacode.org path so
rosettacode.org/wiki/Averages/Arithmetic_mean corresponds to the
sub-directory `Averages/Arithmetic_mean`Each example should be imported by `config.temper.md` so that one
library definition can be used by `temper build` to compile them all.TODO: A CI run that runs `temper build`
## Translations
If you translate an example from another language, please ensure the source
`*.temper.md` file includes the URL of the original and the source code in a fenced
code block.``````markdown
This Temper code was adapted from https://url/to/original```py
original source code in a fenced code block
`````````
## Contributing
Just add a directory for your example following the convention above
and send a PR.If you want to add a second implementation of an existing coding
problem just add another file to the same directory.
You'll probably need to name your exports slightly differently.Feel free to take credit in the file commentary.