rockstar-js icon indicating copy to clipboard operation
rockstar-js copied to clipboard

JavaScript transpiler for the esoteric language 'Rockstar'

Results 22 rockstar-js issues
Sort by recently updated
recently updated
newest added

Per the spec: > Numbers in Rockstar are stored using the DEC64 numeric type. Presumably I'll need some sort of library for this. Stress-tests would also be nice, so once...

The keyword is part of the variable name, so `a boy` is a different variable from `the boy`.

good first issue
ready

Hi, @zhuowei, @pzavolinsky, and @gunnerwolf! As an experiment, I'm giving commit access to everyone who has submitted at least one pull request to Rockstar-JS. I hope that this will encourage...

This is a first draft for unit tests & test coverage. We should first check together if this is a good way to go before going any further. Does the...

"maybe" and "definitely maybe" are not implemented for now. According to specs : > Null - the null type. Evaluates as equal to zero and equal to false. The keywords...

Make sure constants all match spec. > - Constants: `mysterious`, `null`, `nothing`, `nowhere`, `nobody`, `empty`, `gone`, `true`, `right`, `yes`, `ok`, `false`, `wrong`, `no`, `lies`, `maybe`, `definitely maybe`

good first issue
ready

Add tests which execute various Rockstar statements and check the results. I'd personally go with mocha, but if you prefer a different test framework go ahead and use that instead....

good first issue
ready

must have at least one argument. Multiple arguments are separated by the "and" keyword or a ','. Arguments may only be variables or literals. Compound expressions are not allowed. Functionals...

ready

There's a bunch of changes to precedence, comparison, and the like. Need to review and file issues as appropriate.

ready

Rockstar has 4 different logical operators that first convert their operand(s) to a boolean by truthiness. * `A and B` returns the [Conjunction](https://en.wikipedia.org/wiki/AND_gate) * `A or B` returns the [Disjunction](https://en.wikipedia.org/wiki/OR_gate)...

good first issue
ready