https://github.com/zac-garby/radon-play
An online playground for my language, Radon.
https://github.com/zac-garby/radon-play
playground radon
Last synced: 3 months ago
JSON representation
An online playground for my language, Radon.
- Host: GitHub
- URL: https://github.com/zac-garby/radon-play
- Owner: zac-garby
- Created: 2018-01-15T18:40:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-17T17:19:57.000Z (over 7 years ago)
- Last Synced: 2025-02-10T01:41:40.241Z (4 months ago)
- Topics: playground, radon
- Language: Go
- Size: 414 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Radon Playground

An online code-runner for the Radon language. Currently, it supports the
execution of arbitrary Radon code, however there are certainly areas for
improvement:- Timeout, maybe of about 5 minutes
- Would involve adding some kind of interrupt system to the Radon
virtual machine.
- A job queue
- Queues a number of jobs, maybe up to 32?, and won't execute more than
that amount simultaneously. To reduce load on the server.
- Permalinks
- Syntax highlighting
- Some example programs## Parsing and compiling
As well as executing the program, you can tell it to just parse or compile
it. This is done using the URL parameter, `?job=`. `` can be either
`ast`, `bytecode`, or `exec`. (Technically, anything which isn't `ast` or
`bytecode` is interpreted as `exec`.)
