Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/RockstarLang/rockstar
Home of the Rockstar programming language
https://github.com/RockstarLang/rockstar
Last synced: 11 days ago
JSON representation
Home of the Rockstar programming language
- Host: GitHub
- URL: https://github.com/RockstarLang/rockstar
- Owner: RockstarLang
- License: agpl-3.0
- Created: 2018-07-21T16:10:34.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T19:03:57.000Z (16 days ago)
- Last Synced: 2024-10-29T14:59:05.413Z (15 days ago)
- Language: JavaScript
- Homepage: https://codewithrockstar.com/
- Size: 6.61 MB
- Stars: 6,879
- Watchers: 123
- Forks: 223
- Open Issues: 53
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-list - rockstar
README
# rockstar2
It's time. Rockstar 2: "The Difficult Second Version"The Build Process
Building codewithrockstar.com works like this:
build-and-test-rockstar-engine
- runs on Linux
- Builds the parser and interpreter
- Runs the test suite
- Uploads artifacts for:
- linux native binary
- WASM interpreter for the websiteIF THAT WORKS:
build-windows-binary
* builds the Rockstar windows binarybuild-macos-binary
* builds the macOS binarybuild-and-deploy-website
* Downloads the linux binary Rockstar WASM artifact from step 1
* Downloads the windows and macOS binaries from steps 2 and 3
* Builds the Jekyll site
### Debug/Dev Mode SetupIn dev mode, I use symbolic directory links between the various parts of the project. Rebuilding the .NET solution will rebuild the WASM interpreter, which Jekyll can see as `/wasm/**`, and trigger a site rebuild, and all the Rockstar code examples are part of both the `Rockstar.Test` .NET test suite project and the `codewithrockstar.com` site:
```
> cd codewithrockstar.com
> mklink /d wasm ..\Starship\Rockstar.Wasm\bin\Debug\net8.0-browser
> mklink /d examples ..\Starship\Rockstar.Test\programs\examples
``````
codewithrockstar.com
/wasm --> [ /Starship/Rockstar.Wasm/bin/Debug/net8.0-browser ]
/examples --> [ /Starship/Rockstar.Test/programs/examples ]
/index.html
/example.md
/js
/rockstar-editor.js (from codemirror)
```Function currying
```
output
function call: product
function call: sum
number: 2
number: 4
function call: sum
number: 5
number: 6
```So: `product(sum(2,4,sum(5,6))` needs to be translated to `product(sum(2,4),sum(5,6))` based on the arity of the functions
So `sum(2,4,sum(5,6))` needs to evaluate `sum(2,4)` and leave the expression `sum(5,6)` in the bucket
Then `product(sum(2,4)`