├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── build-and-deploy-website.yml │ ├── build-macos-binary.yml │ ├── build-rockstar-2.0.yml │ ├── build-windows-binary.yml │ └── release-rockstar-engine.yml ├── .gitignore ├── LICENSE ├── README.md ├── Starship ├── .idea │ └── .idea.Starship │ │ └── .idea │ │ ├── .gitignore │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ └── vcs.xml ├── Rockstar.Engine │ ├── Expressions │ │ ├── Binary.cs │ │ ├── CommonVariable.cs │ │ ├── Dequeue.cs │ │ ├── Enlist.cs │ │ ├── Expression.cs │ │ ├── Lookup.cs │ │ ├── Operator.cs │ │ ├── OperatorExpressions.cs │ │ ├── Pronoun.cs │ │ ├── ProperVariable.cs │ │ ├── SimpleVariable.cs │ │ ├── Unary.cs │ │ └── Variable.cs │ ├── IRockstarIO.cs │ ├── PegasusParserExtensions.cs │ ├── Result.cs │ ├── Rockstar.Engine.csproj │ ├── Rockstar.Engine.v3.ncrunchproject │ ├── RockstarEnvironment.cs │ ├── Source.cs │ ├── Statements │ │ ├── Assign.cs │ │ ├── Block.cs │ │ ├── Break.cs │ │ ├── Conditional.cs │ │ ├── Continue.cs │ │ ├── Crement.cs │ │ ├── Debug.cs │ │ ├── Declare.cs │ │ ├── Decrement.cs │ │ ├── Dump.cs │ │ ├── Exit.cs │ │ ├── ExpressionStatement.cs │ │ ├── ForInLoop.cs │ │ ├── ForOfLoop.cs │ │ ├── Listen.cs │ │ ├── Loop.cs │ │ ├── Mutation.cs │ │ ├── Ninja.cs │ │ ├── Output.cs │ │ ├── Program.cs │ │ ├── Quine.cs │ │ ├── Return.cs │ │ ├── Round.cs │ │ ├── Rounding.cs │ │ ├── Statement.cs │ │ ├── UntilLoop.cs │ │ ├── WhileLoop.cs │ │ └── WildcardStatement.cs │ ├── StringBuilderIO.cs │ ├── Values │ │ ├── Arräy.cs │ │ ├── Booleän.cs │ │ ├── Closure.cs │ │ ├── FunctionCall.cs │ │ ├── Functiön.cs │ │ ├── IHaveANumber.cs │ │ ├── ListExtensions.cs │ │ ├── Mysterious.cs │ │ ├── Numbër.cs │ │ ├── Nüll.cs │ │ ├── Strïng.cs │ │ ├── Value.cs │ │ └── ValueOf.cs │ ├── WhatToDo.cs │ └── rockstar.peg ├── Rockstar.Profiler │ ├── Program.cs │ └── Rockstar.Profiler.csproj ├── Rockstar.Test │ ├── EnvironmentTests.cs │ ├── Errors │ │ └── ErrorTests.cs │ ├── Examples │ │ └── ExampleTests.cs │ ├── FixtureBase.cs │ ├── GlobalUsings.cs │ ├── IOTests.cs │ ├── ParserTests.cs │ ├── Parsing │ │ ├── AssignmentTests.cs │ │ ├── AssortedTests.cs │ │ ├── BlockTests.cs │ │ └── ParserTestBase.cs │ ├── QuineTests.cs │ ├── RockFile.cs │ ├── Rockstar.Test.csproj │ ├── Rockstar.Test.v3.ncrunchproject │ ├── RockstarTestBase.cs │ ├── RunnerTests.cs │ ├── StringExtensions.cs │ ├── TestEnvironment.cs │ ├── TestOutputHelperExtensions.cs │ ├── V1FixturesTests.cs │ ├── Values │ │ ├── ArräyTests.cs │ │ ├── ComparisonTests.cs │ │ ├── NumbërTests.cs │ │ ├── StrïngTests.cs │ │ └── TruthinessTests.cs │ └── programs │ │ ├── examples │ │ ├── 01-getting-started │ │ │ ├── args.rock │ │ │ ├── chordpro-comments.rock │ │ │ ├── comments.rock │ │ │ ├── hello-world-aliases.rock │ │ │ ├── hello-world-casing-and-whitespace.rock │ │ │ ├── hello-world.rock │ │ │ ├── listen.rock │ │ │ ├── multiline-comments.rock │ │ │ ├── punctuated-statements.rock │ │ │ └── write-whisper.rock │ │ ├── 02-types-and-values │ │ │ ├── boolean-literals.rock │ │ │ ├── null-literals.rock │ │ │ ├── number-29-digits.rock │ │ │ ├── number-limits.rock │ │ │ ├── number-literals.rock │ │ │ ├── number-overflow.rock │ │ │ ├── string-literals.rock │ │ │ ├── string-literals.rock.out │ │ │ └── unprintable-characters.rock │ │ ├── 03-variables │ │ │ ├── assignment-using-is.rock │ │ │ ├── assignment.rock │ │ │ ├── common-variables.rock │ │ │ ├── her-times-the-times.rock │ │ │ ├── ninja-strings-fizzbuzz.rock │ │ │ ├── ninja-strings-fizzbuzz.rock.out │ │ │ ├── ninja-strings.rock │ │ │ ├── number-29-digits.rock │ │ │ ├── poetic-numbers-2.rock │ │ │ ├── poetic-numbers.rock │ │ │ ├── poetic-strings.rock │ │ │ ├── pronouns.rock │ │ │ ├── proper-variables.rock │ │ │ └── simple-variables.rock │ │ ├── 04-arithmetic │ │ │ ├── addition-types.rock │ │ │ ├── basic-arithmetic.rock │ │ │ ├── compound-expressions.rock │ │ │ ├── division-types.rock │ │ │ ├── lyrical-expressions.rock │ │ │ ├── multiplication-types.rock │ │ │ ├── string-multiplication.rock │ │ │ └── subtraction-types.rock │ │ ├── 05-boolean-logic │ │ │ ├── basic-logic.rock │ │ │ ├── binary-operands.rock │ │ │ ├── comparison.rock │ │ │ ├── equality.rock │ │ │ ├── identity.rock │ │ │ ├── inequality.rock │ │ │ ├── operator-precedence.rock │ │ │ ├── short-circuiting.rock │ │ │ ├── string-comparison.rock │ │ │ ├── truthiness.rock │ │ │ └── unary-not.rock │ │ ├── 06-expressions │ │ │ ├── comparison.rock │ │ │ ├── expression-lists.rock │ │ │ ├── primary-lists.rock │ │ │ └── variable-lists.rock │ │ ├── 07-flow-control │ │ │ ├── block-syntax.rock │ │ │ ├── break-and-continue-wildcard.rock │ │ │ ├── break.rock │ │ │ ├── continue.rock │ │ │ ├── exit.rock │ │ │ ├── for-in-loops.rock │ │ │ ├── if-else-oneliners.rock │ │ │ ├── indented-if.rock │ │ │ ├── nested-loops.rock │ │ │ ├── oh-yeah-baby-idiomatic.rock │ │ │ ├── oh-yeah-baby-minimalist.rock │ │ │ ├── ooooh.rock │ │ │ ├── until.rock │ │ │ └── while.rock │ │ ├── 08-functions │ │ │ ├── closures.rock │ │ │ ├── expression-lists-as-function-arguments.rock │ │ │ ├── fibonacci.rock │ │ │ ├── function-arity.rock │ │ │ ├── function-calls-as-arguments.rock │ │ │ ├── function-scope.rock │ │ │ ├── functions-with-no-arguments.rock │ │ │ ├── functions.rock │ │ │ ├── nested-functions.rock │ │ │ ├── one-line-functions.rock │ │ │ ├── polly-wants-a-cracker.rock │ │ │ └── pronoun-argument.rock │ │ ├── 09-arrays │ │ │ ├── adding-arrays.rock │ │ │ ├── array-length-as-scalar.rock │ │ │ ├── arrays-of-arrays.rock │ │ │ ├── basic-arrays.rock │ │ │ ├── for-in-arrays.rock │ │ │ ├── for-of.rock │ │ │ ├── functions-returning-arrays.rock │ │ │ ├── indexers-for-scalar-types.rock │ │ │ ├── invalid-assignment.rock │ │ │ ├── modify-array-inside-loop.rock │ │ │ ├── non-integer-keys.rock │ │ │ ├── pop-and-roll.rock │ │ │ ├── returning-arrays-from-functions.rock │ │ │ ├── rock-and-roll-tommy.rock │ │ │ ├── rock-and-roll.rock │ │ │ ├── roll-assign.rock │ │ │ ├── roll-into.rock │ │ │ ├── roll.rock │ │ │ ├── subtracting-arrays.rock │ │ │ └── the-scorpions.rock │ │ ├── 10-conversions │ │ │ ├── cast.rock │ │ │ ├── join-arrays.rock │ │ │ ├── mutations-update-pronouns.rock │ │ │ ├── rounding.rock │ │ │ ├── split-strings.rock │ │ │ └── write-strings.rock │ │ ├── 12-deep-cuts │ │ │ └── dump-arrays.rock │ │ ├── 99-appendix │ │ │ ├── if-else-scope.rock │ │ │ └── if-else.rock │ │ ├── 99-rockstar-acid-test │ │ │ ├── acid-test.rock │ │ │ └── acid-test.rock.in │ │ ├── fizzbuzz │ │ │ ├── fb1.rock │ │ │ ├── fb2.rock │ │ │ └── fb3.rock │ │ ├── gallery │ │ │ ├── 99_beers.rock │ │ │ ├── README.md │ │ │ ├── The-Final-Stand.rock │ │ │ ├── decimal_to_binary_converter.rock │ │ │ ├── factorization.rock │ │ │ ├── fizzbuzz-using-stacks-and-cast.rock │ │ │ ├── fizzbuzz.rock │ │ │ ├── fizzbuzz2.rock │ │ │ ├── fizzbuzz2.rock.out │ │ │ ├── fizzbuzz_minimalist.rock │ │ │ ├── hello-world.rock │ │ │ ├── isPalindrome.rock │ │ │ ├── isPalindrome.rock.in │ │ │ ├── mandelbrot.rock │ │ │ ├── mandelbrot.rock.out │ │ │ ├── nth-fibonacci.rock │ │ │ ├── nth-fibonacci.rock.in │ │ │ ├── primes_with_input.rock │ │ │ ├── primes_with_input_v2.rock │ │ │ ├── rot13.rock │ │ │ └── rot13.rock.in │ │ └── tutorial │ │ │ ├── basic-arithmetic.rock │ │ │ ├── basic-arrays.rock │ │ │ ├── boolean-logic.rock │ │ │ ├── break-and-take.rock │ │ │ ├── cast.rock │ │ │ ├── common-variables.rock │ │ │ ├── comparisons.rock │ │ │ ├── equality.rock │ │ │ ├── function-list.rock │ │ │ ├── functions.rock │ │ │ ├── hello-world-aliases.rock │ │ │ ├── if-else-baby.rock │ │ │ ├── if-else.rock │ │ │ ├── join-arrays.rock │ │ │ ├── listen.rock │ │ │ ├── lyrical-arithmetic-1.rock │ │ │ ├── lyrical-arithmetic-2.rock │ │ │ ├── ninja-strings.rock │ │ │ ├── oooh-baby.rock │ │ │ ├── parse-trees.rock │ │ │ ├── print-hello-world.rock │ │ │ ├── pronouns.rock │ │ │ ├── proper-variables.rock │ │ │ ├── push-and-pop.rock │ │ │ ├── ricky-was-a-young-boy.rock │ │ │ ├── rock-and-roll.rock │ │ │ ├── rockstar-arithmetic.rock │ │ │ ├── short-circuits.rock │ │ │ ├── simple-variables.rock │ │ │ ├── split-strings.rock │ │ │ ├── strings.rock │ │ │ └── with-empty.rock │ │ ├── fixtures │ │ ├── arrays │ │ │ ├── rock-array-element-inside-loop.rock │ │ │ └── various-array-tests.rock │ │ ├── conditionals │ │ │ ├── if-block-else-block.rock │ │ │ ├── if-block-else-statement.rock │ │ │ ├── if-if-block-else-block.rock │ │ │ ├── if-if-if-block-end-statement.rock │ │ │ ├── if-if-if-if-oooh.rock │ │ │ ├── if-statement-else-statement.rock │ │ │ └── if-statement.rock │ │ ├── debugging │ │ │ └── dump.rock │ │ ├── loops │ │ │ └── assignment-inside-loop.rock │ │ └── strings │ │ │ └── string-literals.rock │ │ └── v1-fixtures │ │ ├── arrays │ │ ├── array_functions.rock │ │ ├── array_functions.rock.out │ │ ├── arrayalike.rock │ │ ├── arrayalike.rock.out │ │ ├── arrays.rock │ │ ├── arrays.rock.out │ │ ├── hash.rock │ │ ├── hash.rock.out │ │ ├── join.rock │ │ ├── join.rock.out │ │ ├── split.rock │ │ ├── split.rock.out │ │ ├── split_delimiters.rock │ │ └── split_delimiters.rock.out │ │ ├── assignment │ │ ├── compound_assignments.rock │ │ ├── compound_assignments.rock.out │ │ ├── lets.rock │ │ └── lets.rock.out │ │ ├── comments │ │ ├── chordpro_comments.rock │ │ ├── complex_comments.rock │ │ └── simpleComments.rock │ │ ├── conditionals │ │ ├── empty_if.rock │ │ ├── empty_if.rock.out │ │ ├── simpleConditionals.rock │ │ ├── simpleConditionals.rock.out │ │ ├── truthinessTest.rock │ │ └── truthinessTest.rock.out │ │ ├── constants │ │ └── constants.rock │ │ ├── control-flow │ │ ├── indented_else.rock │ │ ├── indented_else.rock.out │ │ ├── nested_loops.rock │ │ ├── nested_loops.rock.out │ │ ├── simpleLoops.rock │ │ └── simpleLoops.rock.out │ │ ├── equality │ │ ├── arrays.rock │ │ ├── arrays.rock.out │ │ ├── booleans.rock │ │ ├── booleans.rock.out │ │ ├── equalityComparison.rock │ │ ├── equalityComparison.rock.out │ │ ├── mysterious.rock │ │ ├── mysterious.rock.out │ │ ├── negation.rock │ │ ├── negation.rock.out │ │ ├── nothing.rock │ │ ├── null.rock │ │ ├── numbers.rock │ │ └── strings.rock │ │ ├── examples │ │ ├── 99_beers.rock │ │ ├── 99_beers.rock.out │ │ ├── factorial.rock │ │ ├── factorial.rock.out │ │ ├── fibonacci.rock │ │ ├── fibonacci.rock.out │ │ ├── fizzbuzz-idiomatic.rock │ │ ├── fizzbuzz-idiomatic.rock.out │ │ ├── fizzbuzz-minimalist.rock │ │ ├── fizzbuzz-minimalist.rock.out │ │ ├── hello-world.rock │ │ └── hello-world.rock.out │ │ ├── functions │ │ ├── aliases_for_takes.rock │ │ ├── aliases_for_takes.rock.out │ │ ├── array_arguments.rock │ │ ├── array_arguments.rock.out │ │ ├── functionCalls.rock │ │ ├── functionCalls.rock.out │ │ ├── nested_function_scopes.rock │ │ ├── nested_function_scopes.rock.out │ │ ├── nested_functions.rock │ │ ├── nested_functions.rock.out │ │ ├── recursion.rock │ │ ├── recursion.rock.out │ │ ├── simpleFunctions.rock │ │ └── simpleFunctions.rock.out │ │ ├── io │ │ ├── hello_number.rock │ │ ├── hello_number.rock.out │ │ ├── hello_world.rock │ │ ├── inputTest.rock │ │ ├── inputTest.rock.in │ │ ├── inputTest.rock.out │ │ ├── inputTest2.rock │ │ ├── inputTest2.rock.in │ │ └── inputTest2.rock.out │ │ ├── literals │ │ ├── literalAliases.rock │ │ ├── literalstrings.rock │ │ ├── poeticLiterals.rock │ │ ├── poeticLiterals.rock.out │ │ └── poeticNumbers.rock │ │ ├── math │ │ ├── operator_aliases.rock │ │ ├── operator_precedence.rock │ │ ├── operators.rock │ │ ├── rounding.rock │ │ ├── rounding.rock.out │ │ ├── rounding_pronouns.rock │ │ └── rounding_pronouns.rock.out │ │ ├── operators │ │ ├── addOperator.rock │ │ ├── addOperator.rock.out │ │ ├── andTest.rock │ │ ├── andTest.rock.out │ │ ├── booleans.rock │ │ ├── booleans.rock.out │ │ ├── divisionOperator.rock │ │ ├── divisionOperator.rock.out │ │ ├── incrementAndDecrement.rock │ │ ├── incrementAndDecrement.rock.out │ │ ├── list_expressions_arithmetic.rock │ │ ├── list_expressions_arithmetic.rock.out │ │ ├── multiplicationOperator.rock │ │ ├── multiplicationOperator.rock.out │ │ ├── notTest.rock │ │ ├── notTest.rock.out │ │ ├── orNorTest.rock │ │ ├── orNorTest.rock.out │ │ ├── orderingComparison.rock │ │ ├── orderingComparison.rock.out │ │ ├── short-circuit.rock │ │ ├── subtractOperator.rock │ │ └── subtractOperator.rock.out │ │ ├── queues │ │ ├── pop.rock │ │ ├── pop.rock.out │ │ ├── push.rock │ │ ├── push.rock.out │ │ ├── queues.rock │ │ ├── queues.rock.out │ │ ├── string_queues.rock │ │ └── string_queues.rock.out │ │ ├── types │ │ ├── parsing.rock │ │ └── parsing.rock.out │ │ ├── variables │ │ ├── common_variables.rock │ │ ├── common_variables.rock.out │ │ ├── globalVariables.rock │ │ ├── globalVariables.rock.out │ │ ├── poeticStrings.rock │ │ ├── poeticStrings.rock.out │ │ ├── pronouns.rock │ │ ├── pronouns.rock.out │ │ ├── proper_variables.rock │ │ ├── proper_variables.rock.out │ │ ├── simple_pronouns.rock │ │ ├── simple_pronouns.rock.out │ │ ├── simple_variables.rock │ │ ├── umlauts.rock │ │ ├── umlauts.rock.out │ │ ├── writeGlobal.rock │ │ └── writeGlobal.rock.out │ │ └── whitespace │ │ ├── apostrophesIgnored.rock │ │ ├── leading_blank_lines.rock │ │ ├── leading_empty_lines.rock │ │ ├── leading_whitespace.rock │ │ ├── no_newline_at_eof.rock │ │ ├── trailing_blank_lines.rock │ │ └── trailing_empty_lines.rock ├── Rockstar.Wasm │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ ├── Rockstar.Wasm.csproj │ ├── Rockstar.Wasm.v3.ncrunchproject │ ├── RockstarRunner.cs │ ├── runtimeconfig.template.json │ └── wwwroot │ │ ├── index.html │ │ └── main.js ├── Rockstar │ ├── ConsoleEnvironment.cs │ ├── ConsoleIO.cs │ ├── Program.cs │ ├── Rockstar.csproj │ ├── Rockstar.v3.ncrunchproject │ ├── outside.rock │ └── rockstar-icon.ico ├── Starship.sln ├── Starship.sln.DotSettings ├── Starship.v3.ncrunchsolution └── global.json ├── certified-rockstar-developer-2-purple.png ├── cm-lang-rockstar ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── jest.config.mjs ├── package.json ├── rollup.config.js ├── src │ ├── create-theme.ts │ ├── editor.mjs │ ├── grammars │ │ ├── kitchen-sink-highlight.js │ │ ├── kitchen-sink.grammar │ │ ├── kitchen-sink.grammar.d.ts │ │ ├── kitchen-sink.js │ │ ├── kitchen-sink.terms.js │ │ ├── rockstar-highlight.js │ │ ├── rockstar.grammar │ │ ├── rockstar.grammar.d.ts │ │ ├── rockstar.js │ │ └── rockstar.terms.js │ ├── kitchen-sink.ts │ ├── rockstar.ts │ ├── themes.ts │ ├── themes │ │ ├── amy.ts │ │ ├── black-sabbath.ts │ │ ├── clouds.ts │ │ ├── cobalt.ts │ │ ├── cool-glow.ts │ │ ├── deep-purple.ts │ │ ├── dracula.ts │ │ ├── espresso.ts │ │ ├── kitchen-sink.ts │ │ └── solarized-light.ts │ └── tokenizers │ │ ├── ascii.js │ │ ├── keywords.js │ │ ├── rockstar-lexer.js │ │ └── rockstar-tokenizer.js ├── test │ ├── examples.test.js │ ├── parser.test.js │ ├── parser │ │ ├── editor.d.ts │ │ └── editor.js │ └── test.js └── tsconfig.json ├── codewithrockstar.com ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _OLD_online.html ├── _config.yml ├── _includes │ ├── footer_custom.html │ ├── head_custom.html │ └── header_custom.html ├── _layouts │ ├── docs.html │ ├── main.html │ └── page.html ├── _plugins │ └── rockstar_include.rb ├── _sass │ ├── color_schemes │ │ ├── darkstar.scss │ │ └── rockstar.scss │ └── custom │ │ ├── custom.scss │ │ ├── page.scss │ │ └── setup.scss ├── assets │ ├── css │ │ ├── just-the-docs-darkstar.scss │ │ └── just-the-docs-rockstar.scss │ ├── fontawesome │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── light.css │ │ │ ├── light.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── thin.css │ │ │ ├── thin.min.css │ │ │ ├── v4-font-face.css │ │ │ ├── v4-font-face.min.css │ │ │ ├── v4-shims.css │ │ │ ├── v4-shims.min.css │ │ │ ├── v5-font-face.css │ │ │ └── v5-font-face.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-light-300.ttf │ │ │ ├── fa-light-300.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-thin-100.ttf │ │ │ ├── fa-thin-100.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ └── img │ │ ├── PNG │ │ ├── guitars-tile.png │ │ └── tile.html │ │ ├── SVG │ │ └── guitars-tile.svg │ │ ├── guitars-pattern.png │ │ ├── rockstar-logotype-no-tail.svg │ │ ├── rockstar-logotype.svg │ │ └── teemill │ │ ├── 480p │ │ ├── blue-kids-fit.webp │ │ ├── blue-logo.webp │ │ ├── blue-tailored.webp │ │ ├── red-basic-fit.webp │ │ ├── red-logo.webp │ │ └── red-on-press.webp │ │ ├── blue-kids-fit.webp │ │ ├── blue-logo.webp │ │ ├── blue-tailored.webp │ │ ├── red-basic-fit.webp │ │ ├── red-logo.webp │ │ └── red-on-press.webp ├── code-of-conduct.md ├── community.md ├── docs │ ├── 01-getting-started.md │ ├── 02-types-and-values.md │ ├── 03-variables.md │ ├── 04-arithmetic.md │ ├── 05-boolean-logic.md │ ├── 06-expressions.md │ ├── 07-flow-control.md │ ├── 08-functions.md │ ├── 09-arrays.md │ ├── 10-conversions.md │ ├── 11-changes-from-v1.md │ ├── 12-deep-cuts.md │ ├── 99-rockstar-acid-test.md │ ├── 9999-codemirror-kitchen-sink.md │ └── index.md ├── examples ├── favicon.ico ├── favicon.png ├── gallery.md ├── grammars │ └── rockstar.peg ├── images │ ├── chordpro-example.png │ └── rockstar-og-image.jpg ├── index.html ├── js │ ├── codemirror │ │ ├── editor.d.ts │ │ └── editor.js │ ├── main.js │ ├── rockstar-editor.js │ └── worker.js ├── links.md ├── markdown.md ├── merch.md ├── news.md ├── online.html ├── peg notes.md ├── sample.md ├── tutorial.md └── wasm-demo │ ├── index.html │ └── wasm.js ├── rockstar-icon.ico └── rockstar-logo-strapline-sticker.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy-website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/.github/workflows/build-and-deploy-website.yml -------------------------------------------------------------------------------- /.github/workflows/build-macos-binary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/.github/workflows/build-macos-binary.yml -------------------------------------------------------------------------------- /.github/workflows/build-rockstar-2.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/.github/workflows/build-rockstar-2.0.yml -------------------------------------------------------------------------------- /.github/workflows/build-windows-binary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/.github/workflows/build-windows-binary.yml -------------------------------------------------------------------------------- /.github/workflows/release-rockstar-engine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/.github/workflows/release-rockstar-engine.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/README.md -------------------------------------------------------------------------------- /Starship/.idea/.idea.Starship/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/.idea/.idea.Starship/.idea/.gitignore -------------------------------------------------------------------------------- /Starship/.idea/.idea.Starship/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/.idea/.idea.Starship/.idea/encodings.xml -------------------------------------------------------------------------------- /Starship/.idea/.idea.Starship/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/.idea/.idea.Starship/.idea/indexLayout.xml -------------------------------------------------------------------------------- /Starship/.idea/.idea.Starship/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/.idea/.idea.Starship/.idea/vcs.xml -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/Binary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/Binary.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/CommonVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/CommonVariable.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/Dequeue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/Dequeue.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/Enlist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/Enlist.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/Expression.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/Lookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/Lookup.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/Operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/Operator.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/OperatorExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/OperatorExpressions.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/Pronoun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/Pronoun.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/ProperVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/ProperVariable.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/SimpleVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/SimpleVariable.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/Unary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/Unary.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Expressions/Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Expressions/Variable.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/IRockstarIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/IRockstarIO.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/PegasusParserExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/PegasusParserExtensions.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Result.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Rockstar.Engine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Rockstar.Engine.csproj -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Rockstar.Engine.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Rockstar.Engine.v3.ncrunchproject -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/RockstarEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/RockstarEnvironment.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Source.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Assign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Assign.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Block.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Break.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Break.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Conditional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Conditional.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Continue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Continue.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Crement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Crement.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Debug.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Declare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Declare.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Decrement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Decrement.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Dump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Dump.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Exit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Exit.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/ExpressionStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/ExpressionStatement.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/ForInLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/ForInLoop.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/ForOfLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/ForOfLoop.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Listen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Listen.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Loop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Loop.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Mutation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Mutation.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Ninja.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Ninja.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Output.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Program.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Quine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Quine.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Return.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Return.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Round.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Round.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Rounding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Rounding.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/Statement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/Statement.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/UntilLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/UntilLoop.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/WhileLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/WhileLoop.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Statements/WildcardStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Statements/WildcardStatement.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/StringBuilderIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/StringBuilderIO.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/Arräy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/Arräy.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/Booleän.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/Booleän.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/Closure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/Closure.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/FunctionCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/FunctionCall.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/Functiön.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/Functiön.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/IHaveANumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/IHaveANumber.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/ListExtensions.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/Mysterious.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/Mysterious.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/Numbër.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/Numbër.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/Nüll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/Nüll.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/Strïng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/Strïng.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/Value.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/Values/ValueOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/Values/ValueOf.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/WhatToDo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/WhatToDo.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Engine/rockstar.peg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Engine/rockstar.peg -------------------------------------------------------------------------------- /Starship/Rockstar.Profiler/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Profiler/Program.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Profiler/Rockstar.Profiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Profiler/Rockstar.Profiler.csproj -------------------------------------------------------------------------------- /Starship/Rockstar.Test/EnvironmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/EnvironmentTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Errors/ErrorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Errors/ErrorTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Examples/ExampleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Examples/ExampleTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/FixtureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/FixtureBase.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/GlobalUsings.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/IOTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/IOTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/ParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/ParserTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Parsing/AssignmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Parsing/AssignmentTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Parsing/AssortedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Parsing/AssortedTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Parsing/BlockTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Parsing/BlockTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Parsing/ParserTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Parsing/ParserTestBase.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/QuineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/QuineTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/RockFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/RockFile.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Rockstar.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Rockstar.Test.csproj -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Rockstar.Test.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Rockstar.Test.v3.ncrunchproject -------------------------------------------------------------------------------- /Starship/Rockstar.Test/RockstarTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/RockstarTestBase.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/RunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/RunnerTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/StringExtensions.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/TestEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/TestEnvironment.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/TestOutputHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/TestOutputHelperExtensions.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/V1FixturesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/V1FixturesTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Values/ArräyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Values/ArräyTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Values/ComparisonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Values/ComparisonTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Values/NumbërTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Values/NumbërTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Values/StrïngTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Values/StrïngTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/Values/TruthinessTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/Values/TruthinessTests.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/01-getting-started/args.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/01-getting-started/args.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/01-getting-started/chordpro-comments.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/01-getting-started/chordpro-comments.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/01-getting-started/comments.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/01-getting-started/comments.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/01-getting-started/hello-world-aliases.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/01-getting-started/hello-world-aliases.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/01-getting-started/hello-world-casing-and-whitespace.rock: -------------------------------------------------------------------------------- 1 | 2 | scream "hey!" 3 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/01-getting-started/hello-world.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/01-getting-started/hello-world.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/01-getting-started/listen.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/01-getting-started/listen.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/01-getting-started/multiline-comments.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/01-getting-started/multiline-comments.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/01-getting-started/punctuated-statements.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/01-getting-started/punctuated-statements.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/01-getting-started/write-whisper.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/01-getting-started/write-whisper.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/02-types-and-values/boolean-literals.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/02-types-and-values/boolean-literals.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/02-types-and-values/null-literals.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/02-types-and-values/null-literals.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/02-types-and-values/number-29-digits.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/02-types-and-values/number-29-digits.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/02-types-and-values/number-limits.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/02-types-and-values/number-limits.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/02-types-and-values/number-literals.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/02-types-and-values/number-literals.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/02-types-and-values/number-overflow.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/02-types-and-values/number-overflow.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/02-types-and-values/string-literals.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/02-types-and-values/string-literals.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/02-types-and-values/string-literals.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/02-types-and-values/string-literals.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/02-types-and-values/unprintable-characters.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/02-types-and-values/unprintable-characters.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/assignment-using-is.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/assignment-using-is.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/assignment.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/assignment.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/common-variables.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/common-variables.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/her-times-the-times.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/her-times-the-times.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/ninja-strings-fizzbuzz.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/ninja-strings-fizzbuzz.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/ninja-strings-fizzbuzz.rock.out: -------------------------------------------------------------------------------- 1 | FizzBuzz! 2 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/ninja-strings.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/ninja-strings.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/number-29-digits.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/number-29-digits.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/poetic-numbers-2.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/poetic-numbers-2.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/poetic-numbers.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/poetic-numbers.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/poetic-strings.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/poetic-strings.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/pronouns.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/pronouns.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/proper-variables.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/proper-variables.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/03-variables/simple-variables.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/03-variables/simple-variables.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/04-arithmetic/addition-types.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/04-arithmetic/addition-types.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/04-arithmetic/basic-arithmetic.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/04-arithmetic/basic-arithmetic.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/04-arithmetic/compound-expressions.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/04-arithmetic/compound-expressions.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/04-arithmetic/division-types.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/04-arithmetic/division-types.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/04-arithmetic/lyrical-expressions.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/04-arithmetic/lyrical-expressions.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/04-arithmetic/multiplication-types.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/04-arithmetic/multiplication-types.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/04-arithmetic/string-multiplication.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/04-arithmetic/string-multiplication.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/04-arithmetic/subtraction-types.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/04-arithmetic/subtraction-types.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/05-boolean-logic/basic-logic.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/05-boolean-logic/basic-logic.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/05-boolean-logic/binary-operands.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/05-boolean-logic/binary-operands.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/05-boolean-logic/comparison.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/05-boolean-logic/comparison.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/05-boolean-logic/equality.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/05-boolean-logic/equality.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/05-boolean-logic/identity.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/05-boolean-logic/identity.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/05-boolean-logic/inequality.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/05-boolean-logic/inequality.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/05-boolean-logic/operator-precedence.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/05-boolean-logic/operator-precedence.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/05-boolean-logic/short-circuiting.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/05-boolean-logic/short-circuiting.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/05-boolean-logic/string-comparison.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/05-boolean-logic/string-comparison.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/05-boolean-logic/truthiness.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/05-boolean-logic/truthiness.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/05-boolean-logic/unary-not.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/05-boolean-logic/unary-not.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/06-expressions/comparison.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/06-expressions/comparison.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/06-expressions/expression-lists.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/06-expressions/expression-lists.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/06-expressions/primary-lists.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/06-expressions/primary-lists.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/06-expressions/variable-lists.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/06-expressions/variable-lists.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/block-syntax.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/block-syntax.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/break-and-continue-wildcard.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/break-and-continue-wildcard.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/break.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/break.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/continue.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/continue.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/exit.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/exit.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/for-in-loops.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/for-in-loops.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/if-else-oneliners.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/if-else-oneliners.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/indented-if.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/indented-if.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/nested-loops.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/nested-loops.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/oh-yeah-baby-idiomatic.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/oh-yeah-baby-idiomatic.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/oh-yeah-baby-minimalist.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/oh-yeah-baby-minimalist.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/ooooh.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/ooooh.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/until.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/until.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/07-flow-control/while.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/07-flow-control/while.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/08-functions/closures.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/08-functions/closures.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/08-functions/expression-lists-as-function-arguments.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/08-functions/expression-lists-as-function-arguments.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/08-functions/fibonacci.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/08-functions/fibonacci.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/08-functions/function-arity.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/08-functions/function-arity.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/08-functions/function-calls-as-arguments.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/08-functions/function-calls-as-arguments.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/08-functions/function-scope.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/08-functions/function-scope.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/08-functions/functions-with-no-arguments.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/08-functions/functions-with-no-arguments.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/08-functions/functions.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/08-functions/functions.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/08-functions/nested-functions.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/08-functions/nested-functions.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/08-functions/one-line-functions.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/08-functions/one-line-functions.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/08-functions/polly-wants-a-cracker.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/08-functions/polly-wants-a-cracker.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/08-functions/pronoun-argument.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/08-functions/pronoun-argument.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/adding-arrays.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/adding-arrays.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/array-length-as-scalar.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/array-length-as-scalar.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/arrays-of-arrays.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/arrays-of-arrays.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/basic-arrays.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/basic-arrays.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/for-in-arrays.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/for-in-arrays.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/for-of.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/for-of.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/functions-returning-arrays.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/functions-returning-arrays.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/indexers-for-scalar-types.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/indexers-for-scalar-types.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/invalid-assignment.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/invalid-assignment.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/modify-array-inside-loop.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/modify-array-inside-loop.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/non-integer-keys.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/non-integer-keys.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/pop-and-roll.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/pop-and-roll.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/returning-arrays-from-functions.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/returning-arrays-from-functions.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/rock-and-roll-tommy.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/rock-and-roll-tommy.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/rock-and-roll.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/rock-and-roll.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/roll-assign.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/roll-assign.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/roll-into.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/roll-into.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/roll.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/roll.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/subtracting-arrays.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/subtracting-arrays.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/09-arrays/the-scorpions.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/09-arrays/the-scorpions.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/10-conversions/cast.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/10-conversions/cast.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/10-conversions/join-arrays.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/10-conversions/join-arrays.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/10-conversions/mutations-update-pronouns.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/10-conversions/mutations-update-pronouns.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/10-conversions/rounding.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/10-conversions/rounding.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/10-conversions/split-strings.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/10-conversions/split-strings.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/10-conversions/write-strings.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/10-conversions/write-strings.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/12-deep-cuts/dump-arrays.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/12-deep-cuts/dump-arrays.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/99-appendix/if-else-scope.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/99-appendix/if-else-scope.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/99-appendix/if-else.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/99-appendix/if-else.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/99-rockstar-acid-test/acid-test.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/99-rockstar-acid-test/acid-test.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/99-rockstar-acid-test/acid-test.rock.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/99-rockstar-acid-test/acid-test.rock.in -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/fizzbuzz/fb1.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/fizzbuzz/fb1.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/fizzbuzz/fb2.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/fizzbuzz/fb2.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/fizzbuzz/fb3.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/fizzbuzz/fb3.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/99_beers.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/99_beers.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/README.md -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/The-Final-Stand.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/The-Final-Stand.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/decimal_to_binary_converter.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/decimal_to_binary_converter.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/factorization.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/factorization.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/fizzbuzz-using-stacks-and-cast.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/fizzbuzz-using-stacks-and-cast.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/fizzbuzz.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/fizzbuzz.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/fizzbuzz2.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/fizzbuzz2.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/fizzbuzz2.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/fizzbuzz2.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/fizzbuzz_minimalist.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/fizzbuzz_minimalist.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/hello-world.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/hello-world.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/isPalindrome.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/isPalindrome.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/isPalindrome.rock.in: -------------------------------------------------------------------------------- 1 | kayak 2 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/mandelbrot.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/mandelbrot.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/mandelbrot.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/mandelbrot.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/nth-fibonacci.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/nth-fibonacci.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/nth-fibonacci.rock.in: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/primes_with_input.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/primes_with_input.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/primes_with_input_v2.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/primes_with_input_v2.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/rot13.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/gallery/rot13.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/gallery/rot13.rock.in: -------------------------------------------------------------------------------- 1 | Gnxr zr qbja gb gur Cnenqvfr Pvgl -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/basic-arithmetic.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/basic-arithmetic.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/basic-arrays.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/basic-arrays.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/boolean-logic.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/boolean-logic.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/break-and-take.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/break-and-take.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/cast.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/cast.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/common-variables.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/common-variables.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/comparisons.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/comparisons.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/equality.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/equality.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/function-list.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/function-list.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/functions.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/functions.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/hello-world-aliases.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/hello-world-aliases.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/if-else-baby.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/if-else-baby.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/if-else.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/if-else.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/join-arrays.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/join-arrays.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/listen.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/listen.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/lyrical-arithmetic-1.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/lyrical-arithmetic-1.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/lyrical-arithmetic-2.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/lyrical-arithmetic-2.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/ninja-strings.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/ninja-strings.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/oooh-baby.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/oooh-baby.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/parse-trees.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/parse-trees.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/print-hello-world.rock: -------------------------------------------------------------------------------- 1 | print "hello world" -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/pronouns.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/pronouns.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/proper-variables.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/proper-variables.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/push-and-pop.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/push-and-pop.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/ricky-was-a-young-boy.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/ricky-was-a-young-boy.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/rock-and-roll.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/rock-and-roll.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/rockstar-arithmetic.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/rockstar-arithmetic.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/short-circuits.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/short-circuits.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/simple-variables.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/simple-variables.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/split-strings.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/split-strings.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/strings.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/strings.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/examples/tutorial/with-empty.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/examples/tutorial/with-empty.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/fixtures/arrays/rock-array-element-inside-loop.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/fixtures/arrays/rock-array-element-inside-loop.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/fixtures/arrays/various-array-tests.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/fixtures/arrays/various-array-tests.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/fixtures/conditionals/if-block-else-block.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/fixtures/conditionals/if-block-else-block.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/fixtures/conditionals/if-block-else-statement.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/fixtures/conditionals/if-block-else-statement.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/fixtures/conditionals/if-if-block-else-block.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/fixtures/conditionals/if-if-block-else-block.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/fixtures/conditionals/if-if-if-block-end-statement.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/fixtures/conditionals/if-if-if-block-end-statement.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/fixtures/conditionals/if-if-if-if-oooh.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/fixtures/conditionals/if-if-if-if-oooh.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/fixtures/conditionals/if-statement-else-statement.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/fixtures/conditionals/if-statement-else-statement.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/fixtures/conditionals/if-statement.rock: -------------------------------------------------------------------------------- 1 | if 1 say 1 (prints: 1) -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/fixtures/debugging/dump.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/fixtures/debugging/dump.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/fixtures/loops/assignment-inside-loop.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/fixtures/loops/assignment-inside-loop.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/fixtures/strings/string-literals.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/fixtures/strings/string-literals.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/array_functions.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/arrays/array_functions.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/array_functions.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/arrays/array_functions.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/arrayalike.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/arrays/arrayalike.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/arrayalike.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/arrays/arrayalike.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/arrays.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/arrays/arrays.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/arrays.rock.out: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | baz 4 | value 5 | 3 6 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/hash.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/arrays/hash.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/hash.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/arrays/hash.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/join.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/arrays/join.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/join.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/arrays/join.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/split.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/arrays/split.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/split.rock.out: -------------------------------------------------------------------------------- 1 | IN-PLACE 2 | a 3 | b 4 | c 5 | mysterious 6 | LITERAL 7 | w 8 | x 9 | y 10 | z 11 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/split_delimiters.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/arrays/split_delimiters.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/arrays/split_delimiters.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/arrays/split_delimiters.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/assignment/compound_assignments.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/assignment/compound_assignments.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/assignment/compound_assignments.rock.out: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | 2 4 | 73461 5 | 32 6 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/assignment/lets.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/assignment/lets.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/assignment/lets.rock.out: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | null 10 | 1 11 | 16 12 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/comments/chordpro_comments.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/comments/chordpro_comments.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/comments/complex_comments.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/comments/complex_comments.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/comments/simpleComments.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/comments/simpleComments.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/conditionals/empty_if.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/conditionals/empty_if.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/conditionals/empty_if.rock.out: -------------------------------------------------------------------------------- 1 | pass 2 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/conditionals/simpleConditionals.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/conditionals/simpleConditionals.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/conditionals/simpleConditionals.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/conditionals/simpleConditionals.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/conditionals/truthinessTest.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/conditionals/truthinessTest.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/conditionals/truthinessTest.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/conditionals/truthinessTest.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/constants/constants.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/constants/constants.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/control-flow/indented_else.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/control-flow/indented_else.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/control-flow/indented_else.rock.out: -------------------------------------------------------------------------------- 1 | 16 2 | Yes 3 | 15 4 | No 5 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/control-flow/nested_loops.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/control-flow/nested_loops.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/control-flow/nested_loops.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/control-flow/nested_loops.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/control-flow/simpleLoops.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/control-flow/simpleLoops.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/control-flow/simpleLoops.rock.out: -------------------------------------------------------------------------------- 1 | 10 2 | 9 3 | 8 4 | 7 5 | 6 6 | 5 7 | 4 8 | 3 9 | 2 10 | 1 11 | 0 12 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/arrays.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/arrays.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/arrays.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/arrays.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/booleans.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/booleans.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/booleans.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/booleans.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/equalityComparison.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/equalityComparison.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/equalityComparison.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/equalityComparison.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/mysterious.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/mysterious.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/mysterious.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/mysterious.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/negation.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/negation.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/negation.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/negation.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/nothing.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/nothing.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/null.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/null.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/numbers.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/numbers.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/equality/strings.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/equality/strings.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/examples/99_beers.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/examples/99_beers.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/examples/99_beers.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/examples/99_beers.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/examples/factorial.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/examples/factorial.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/examples/factorial.rock.out: -------------------------------------------------------------------------------- 1 | 24 2 | 3628800 3 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/examples/fibonacci.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/examples/fibonacci.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/examples/fibonacci.rock.out: -------------------------------------------------------------------------------- 1 | 55 2 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/examples/fizzbuzz-idiomatic.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/examples/fizzbuzz-idiomatic.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/examples/fizzbuzz-idiomatic.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/examples/fizzbuzz-idiomatic.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/examples/fizzbuzz-minimalist.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/examples/fizzbuzz-minimalist.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/examples/fizzbuzz-minimalist.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/examples/fizzbuzz-minimalist.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/examples/hello-world.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/examples/hello-world.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/examples/hello-world.rock.out: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/aliases_for_takes.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/functions/aliases_for_takes.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/aliases_for_takes.rock.out: -------------------------------------------------------------------------------- 1 | 109 2 | nevermore 3 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/array_arguments.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/functions/array_arguments.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/array_arguments.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/functions/array_arguments.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/functionCalls.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/functions/functionCalls.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/functionCalls.rock.out: -------------------------------------------------------------------------------- 1 | functions 2 | 3 3 | 1 4 | 6 5 | 2 6 | 24 7 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/nested_function_scopes.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/functions/nested_function_scopes.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/nested_function_scopes.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/functions/nested_function_scopes.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/nested_functions.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/functions/nested_functions.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/nested_functions.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/functions/nested_functions.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/recursion.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/functions/recursion.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/recursion.rock.out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/simpleFunctions.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/functions/simpleFunctions.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/functions/simpleFunctions.rock.out: -------------------------------------------------------------------------------- 1 | true 2 | hello world 3 | 5 4 | 7 5 | 7 6 | 5 7 | else 8 | 3 9 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/io/hello_number.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/io/hello_number.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/io/hello_number.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/io/hello_number.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/io/hello_world.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/io/hello_world.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/io/inputTest.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/io/inputTest.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/io/inputTest.rock.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/io/inputTest.rock.in -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/io/inputTest.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/io/inputTest.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/io/inputTest2.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/io/inputTest2.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/io/inputTest2.rock.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/io/inputTest2.rock.in -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/io/inputTest2.rock.out: -------------------------------------------------------------------------------- 1 | first line 2 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/literals/literalAliases.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/literals/literalAliases.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/literals/literalstrings.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/literals/literalstrings.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/literals/poeticLiterals.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/literals/poeticLiterals.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/literals/poeticLiterals.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/literals/poeticLiterals.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/literals/poeticNumbers.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/literals/poeticNumbers.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/math/operator_aliases.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/math/operator_aliases.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/math/operator_precedence.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/math/operator_precedence.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/math/operators.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/math/operators.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/math/rounding.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/math/rounding.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/math/rounding.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/math/rounding.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/math/rounding_pronouns.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/math/rounding_pronouns.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/math/rounding_pronouns.rock.out: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 1 4 | 1 5 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/addOperator.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/addOperator.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/addOperator.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/addOperator.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/andTest.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/andTest.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/andTest.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/andTest.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/booleans.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/booleans.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/booleans.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/booleans.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/divisionOperator.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/divisionOperator.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/divisionOperator.rock.out: -------------------------------------------------------------------------------- 1 | 2.5 2 | 1 3 | 1 4 | 0 5 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/incrementAndDecrement.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/incrementAndDecrement.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/incrementAndDecrement.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/incrementAndDecrement.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/list_expressions_arithmetic.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/list_expressions_arithmetic.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/list_expressions_arithmetic.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/list_expressions_arithmetic.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/multiplicationOperator.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/multiplicationOperator.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/multiplicationOperator.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/multiplicationOperator.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/notTest.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/notTest.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/notTest.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/notTest.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/orNorTest.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/orNorTest.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/orNorTest.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/orNorTest.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/orderingComparison.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/orderingComparison.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/orderingComparison.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/orderingComparison.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/short-circuit.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/short-circuit.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/subtractOperator.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/subtractOperator.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/operators/subtractOperator.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/operators/subtractOperator.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/queues/pop.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/queues/pop.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/queues/pop.rock.out: -------------------------------------------------------------------------------- 1 | assignment: 2 | 1 3 | 2 4 | 3 5 | roll into variables: 6 | 4 7 | 5 8 | 1 9 | 0 10 | mysterious 11 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/queues/push.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/queues/push.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/queues/push.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/queues/push.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/queues/queues.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/queues/queues.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/queues/queues.rock.out: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | mysterious 5 | 0 6 | first 7 | second 8 | third 9 | fourth 10 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/queues/string_queues.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/queues/string_queues.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/queues/string_queues.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/queues/string_queues.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/types/parsing.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/types/parsing.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/types/parsing.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/types/parsing.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/common_variables.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/common_variables.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/common_variables.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/common_variables.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/globalVariables.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/globalVariables.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/globalVariables.rock.out: -------------------------------------------------------------------------------- 1 | 7 2 | 8 3 | 1 4 | 2 5 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/poeticStrings.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/poeticStrings.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/poeticStrings.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/poeticStrings.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/pronouns.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/pronouns.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/pronouns.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/pronouns.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/proper_variables.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/proper_variables.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/proper_variables.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/proper_variables.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/simple_pronouns.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/simple_pronouns.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/simple_pronouns.rock.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/simple_pronouns.rock.out -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/simple_variables.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/simple_variables.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/umlauts.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/umlauts.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/umlauts.rock.out: -------------------------------------------------------------------------------- 1 | true 2 | 4 3 | she lïkes her ümlaüts 4 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/writeGlobal.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/variables/writeGlobal.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/variables/writeGlobal.rock.out: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 5 4 | 1 5 | -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/whitespace/apostrophesIgnored.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/whitespace/apostrophesIgnored.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/whitespace/leading_blank_lines.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/whitespace/leading_blank_lines.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/whitespace/leading_empty_lines.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/whitespace/leading_empty_lines.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/whitespace/leading_whitespace.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/whitespace/leading_whitespace.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/whitespace/no_newline_at_eof.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/whitespace/no_newline_at_eof.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/whitespace/trailing_blank_lines.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/whitespace/trailing_blank_lines.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Test/programs/v1-fixtures/whitespace/trailing_empty_lines.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Test/programs/v1-fixtures/whitespace/trailing_empty_lines.rock -------------------------------------------------------------------------------- /Starship/Rockstar.Wasm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Wasm/Program.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Wasm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Wasm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Wasm/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Wasm/Properties/launchSettings.json -------------------------------------------------------------------------------- /Starship/Rockstar.Wasm/Rockstar.Wasm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Wasm/Rockstar.Wasm.csproj -------------------------------------------------------------------------------- /Starship/Rockstar.Wasm/Rockstar.Wasm.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Wasm/Rockstar.Wasm.v3.ncrunchproject -------------------------------------------------------------------------------- /Starship/Rockstar.Wasm/RockstarRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Wasm/RockstarRunner.cs -------------------------------------------------------------------------------- /Starship/Rockstar.Wasm/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Wasm/runtimeconfig.template.json -------------------------------------------------------------------------------- /Starship/Rockstar.Wasm/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Wasm/wwwroot/index.html -------------------------------------------------------------------------------- /Starship/Rockstar.Wasm/wwwroot/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar.Wasm/wwwroot/main.js -------------------------------------------------------------------------------- /Starship/Rockstar/ConsoleEnvironment.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Starship/Rockstar/ConsoleIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar/ConsoleIO.cs -------------------------------------------------------------------------------- /Starship/Rockstar/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar/Program.cs -------------------------------------------------------------------------------- /Starship/Rockstar/Rockstar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar/Rockstar.csproj -------------------------------------------------------------------------------- /Starship/Rockstar/Rockstar.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar/Rockstar.v3.ncrunchproject -------------------------------------------------------------------------------- /Starship/Rockstar/outside.rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar/outside.rock -------------------------------------------------------------------------------- /Starship/Rockstar/rockstar-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Rockstar/rockstar-icon.ico -------------------------------------------------------------------------------- /Starship/Starship.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Starship.sln -------------------------------------------------------------------------------- /Starship/Starship.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Starship.sln.DotSettings -------------------------------------------------------------------------------- /Starship/Starship.v3.ncrunchsolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/Starship.v3.ncrunchsolution -------------------------------------------------------------------------------- /Starship/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/Starship/global.json -------------------------------------------------------------------------------- /certified-rockstar-developer-2-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/certified-rockstar-developer-2-purple.png -------------------------------------------------------------------------------- /cm-lang-rockstar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/.gitignore -------------------------------------------------------------------------------- /cm-lang-rockstar/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/.npmignore -------------------------------------------------------------------------------- /cm-lang-rockstar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/LICENSE -------------------------------------------------------------------------------- /cm-lang-rockstar/README.md: -------------------------------------------------------------------------------- 1 | How to build a Lezer grammar for Rockstar. 2 | 3 | -------------------------------------------------------------------------------- /cm-lang-rockstar/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/jest.config.mjs -------------------------------------------------------------------------------- /cm-lang-rockstar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/package.json -------------------------------------------------------------------------------- /cm-lang-rockstar/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/rollup.config.js -------------------------------------------------------------------------------- /cm-lang-rockstar/src/create-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/create-theme.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/editor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/editor.mjs -------------------------------------------------------------------------------- /cm-lang-rockstar/src/grammars/kitchen-sink-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/grammars/kitchen-sink-highlight.js -------------------------------------------------------------------------------- /cm-lang-rockstar/src/grammars/kitchen-sink.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/grammars/kitchen-sink.grammar -------------------------------------------------------------------------------- /cm-lang-rockstar/src/grammars/kitchen-sink.grammar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/grammars/kitchen-sink.grammar.d.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/grammars/kitchen-sink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/grammars/kitchen-sink.js -------------------------------------------------------------------------------- /cm-lang-rockstar/src/grammars/kitchen-sink.terms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/grammars/kitchen-sink.terms.js -------------------------------------------------------------------------------- /cm-lang-rockstar/src/grammars/rockstar-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/grammars/rockstar-highlight.js -------------------------------------------------------------------------------- /cm-lang-rockstar/src/grammars/rockstar.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/grammars/rockstar.grammar -------------------------------------------------------------------------------- /cm-lang-rockstar/src/grammars/rockstar.grammar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/grammars/rockstar.grammar.d.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/grammars/rockstar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/grammars/rockstar.js -------------------------------------------------------------------------------- /cm-lang-rockstar/src/grammars/rockstar.terms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/grammars/rockstar.terms.js -------------------------------------------------------------------------------- /cm-lang-rockstar/src/kitchen-sink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/kitchen-sink.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/rockstar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/rockstar.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/themes.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/themes/amy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/themes/amy.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/themes/black-sabbath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/themes/black-sabbath.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/themes/clouds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/themes/clouds.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/themes/cobalt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/themes/cobalt.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/themes/cool-glow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/themes/cool-glow.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/themes/deep-purple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/themes/deep-purple.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/themes/dracula.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/themes/dracula.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/themes/espresso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/themes/espresso.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/themes/kitchen-sink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/themes/kitchen-sink.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/themes/solarized-light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/themes/solarized-light.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/src/tokenizers/ascii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/tokenizers/ascii.js -------------------------------------------------------------------------------- /cm-lang-rockstar/src/tokenizers/keywords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/tokenizers/keywords.js -------------------------------------------------------------------------------- /cm-lang-rockstar/src/tokenizers/rockstar-lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/tokenizers/rockstar-lexer.js -------------------------------------------------------------------------------- /cm-lang-rockstar/src/tokenizers/rockstar-tokenizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/src/tokenizers/rockstar-tokenizer.js -------------------------------------------------------------------------------- /cm-lang-rockstar/test/examples.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/test/examples.test.js -------------------------------------------------------------------------------- /cm-lang-rockstar/test/parser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/test/parser.test.js -------------------------------------------------------------------------------- /cm-lang-rockstar/test/parser/editor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/test/parser/editor.d.ts -------------------------------------------------------------------------------- /cm-lang-rockstar/test/parser/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/test/parser/editor.js -------------------------------------------------------------------------------- /cm-lang-rockstar/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/test/test.js -------------------------------------------------------------------------------- /cm-lang-rockstar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/cm-lang-rockstar/tsconfig.json -------------------------------------------------------------------------------- /codewithrockstar.com/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/.gitignore -------------------------------------------------------------------------------- /codewithrockstar.com/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/Gemfile -------------------------------------------------------------------------------- /codewithrockstar.com/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/Gemfile.lock -------------------------------------------------------------------------------- /codewithrockstar.com/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/LICENSE -------------------------------------------------------------------------------- /codewithrockstar.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/README.md -------------------------------------------------------------------------------- /codewithrockstar.com/_OLD_online.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_OLD_online.html -------------------------------------------------------------------------------- /codewithrockstar.com/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_config.yml -------------------------------------------------------------------------------- /codewithrockstar.com/_includes/footer_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_includes/footer_custom.html -------------------------------------------------------------------------------- /codewithrockstar.com/_includes/head_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_includes/head_custom.html -------------------------------------------------------------------------------- /codewithrockstar.com/_includes/header_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_includes/header_custom.html -------------------------------------------------------------------------------- /codewithrockstar.com/_layouts/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_layouts/docs.html -------------------------------------------------------------------------------- /codewithrockstar.com/_layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_layouts/main.html -------------------------------------------------------------------------------- /codewithrockstar.com/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_layouts/page.html -------------------------------------------------------------------------------- /codewithrockstar.com/_plugins/rockstar_include.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_plugins/rockstar_include.rb -------------------------------------------------------------------------------- /codewithrockstar.com/_sass/color_schemes/darkstar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_sass/color_schemes/darkstar.scss -------------------------------------------------------------------------------- /codewithrockstar.com/_sass/color_schemes/rockstar.scss: -------------------------------------------------------------------------------- 1 | $button-color: #9cf; 2 | -------------------------------------------------------------------------------- /codewithrockstar.com/_sass/custom/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_sass/custom/custom.scss -------------------------------------------------------------------------------- /codewithrockstar.com/_sass/custom/page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_sass/custom/page.scss -------------------------------------------------------------------------------- /codewithrockstar.com/_sass/custom/setup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/_sass/custom/setup.scss -------------------------------------------------------------------------------- /codewithrockstar.com/assets/css/just-the-docs-darkstar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/css/just-the-docs-darkstar.scss -------------------------------------------------------------------------------- /codewithrockstar.com/assets/css/just-the-docs-rockstar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/css/just-the-docs-rockstar.scss -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/all.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/all.min.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/brands.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/brands.min.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/fontawesome.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/fontawesome.min.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/light.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/light.min.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/regular.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/regular.min.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/solid.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/solid.min.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/svg-with-js.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/svg-with-js.min.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/thin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/thin.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/thin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/thin.min.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/v4-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/v4-font-face.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/v4-font-face.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/v4-font-face.min.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/v4-shims.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/v4-shims.min.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/v5-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/v5-font-face.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/css/v5-font-face.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/css/v5-font-face.min.css -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/webfonts/fa-light-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/webfonts/fa-light-300.ttf -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/webfonts/fa-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/webfonts/fa-light-300.woff2 -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/webfonts/fa-thin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/webfonts/fa-thin-100.ttf -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/webfonts/fa-thin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/webfonts/fa-thin-100.woff2 -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /codewithrockstar.com/assets/fontawesome/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/fontawesome/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/PNG/guitars-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/PNG/guitars-tile.png -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/PNG/tile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/PNG/tile.html -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/SVG/guitars-tile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/SVG/guitars-tile.svg -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/guitars-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/guitars-pattern.png -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/rockstar-logotype-no-tail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/rockstar-logotype-no-tail.svg -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/rockstar-logotype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/rockstar-logotype.svg -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/teemill/480p/blue-kids-fit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/teemill/480p/blue-kids-fit.webp -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/teemill/480p/blue-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/teemill/480p/blue-logo.webp -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/teemill/480p/blue-tailored.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/teemill/480p/blue-tailored.webp -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/teemill/480p/red-basic-fit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/teemill/480p/red-basic-fit.webp -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/teemill/480p/red-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/teemill/480p/red-logo.webp -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/teemill/480p/red-on-press.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/teemill/480p/red-on-press.webp -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/teemill/blue-kids-fit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/teemill/blue-kids-fit.webp -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/teemill/blue-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/teemill/blue-logo.webp -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/teemill/blue-tailored.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/teemill/blue-tailored.webp -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/teemill/red-basic-fit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/teemill/red-basic-fit.webp -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/teemill/red-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/teemill/red-logo.webp -------------------------------------------------------------------------------- /codewithrockstar.com/assets/img/teemill/red-on-press.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/assets/img/teemill/red-on-press.webp -------------------------------------------------------------------------------- /codewithrockstar.com/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/code-of-conduct.md -------------------------------------------------------------------------------- /codewithrockstar.com/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/community.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/01-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/01-getting-started.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/02-types-and-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/02-types-and-values.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/03-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/03-variables.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/04-arithmetic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/04-arithmetic.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/05-boolean-logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/05-boolean-logic.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/06-expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/06-expressions.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/07-flow-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/07-flow-control.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/08-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/08-functions.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/09-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/09-arrays.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/10-conversions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/10-conversions.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/11-changes-from-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/11-changes-from-v1.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/12-deep-cuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/12-deep-cuts.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/99-rockstar-acid-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/99-rockstar-acid-test.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/9999-codemirror-kitchen-sink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/9999-codemirror-kitchen-sink.md -------------------------------------------------------------------------------- /codewithrockstar.com/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/docs/index.md -------------------------------------------------------------------------------- /codewithrockstar.com/examples: -------------------------------------------------------------------------------- 1 | ../Starship/Rockstar.Test/programs/examples -------------------------------------------------------------------------------- /codewithrockstar.com/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/favicon.ico -------------------------------------------------------------------------------- /codewithrockstar.com/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/favicon.png -------------------------------------------------------------------------------- /codewithrockstar.com/gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/gallery.md -------------------------------------------------------------------------------- /codewithrockstar.com/grammars/rockstar.peg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/grammars/rockstar.peg -------------------------------------------------------------------------------- /codewithrockstar.com/images/chordpro-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/images/chordpro-example.png -------------------------------------------------------------------------------- /codewithrockstar.com/images/rockstar-og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/images/rockstar-og-image.jpg -------------------------------------------------------------------------------- /codewithrockstar.com/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/index.html -------------------------------------------------------------------------------- /codewithrockstar.com/js/codemirror/editor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/js/codemirror/editor.d.ts -------------------------------------------------------------------------------- /codewithrockstar.com/js/codemirror/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/js/codemirror/editor.js -------------------------------------------------------------------------------- /codewithrockstar.com/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/js/main.js -------------------------------------------------------------------------------- /codewithrockstar.com/js/rockstar-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/js/rockstar-editor.js -------------------------------------------------------------------------------- /codewithrockstar.com/js/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/js/worker.js -------------------------------------------------------------------------------- /codewithrockstar.com/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/links.md -------------------------------------------------------------------------------- /codewithrockstar.com/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/markdown.md -------------------------------------------------------------------------------- /codewithrockstar.com/merch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/merch.md -------------------------------------------------------------------------------- /codewithrockstar.com/news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/news.md -------------------------------------------------------------------------------- /codewithrockstar.com/online.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/online.html -------------------------------------------------------------------------------- /codewithrockstar.com/peg notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/peg notes.md -------------------------------------------------------------------------------- /codewithrockstar.com/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/sample.md -------------------------------------------------------------------------------- /codewithrockstar.com/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/tutorial.md -------------------------------------------------------------------------------- /codewithrockstar.com/wasm-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/wasm-demo/index.html -------------------------------------------------------------------------------- /codewithrockstar.com/wasm-demo/wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/codewithrockstar.com/wasm-demo/wasm.js -------------------------------------------------------------------------------- /rockstar-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/rockstar-icon.ico -------------------------------------------------------------------------------- /rockstar-logo-strapline-sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockstarLang/rockstar/HEAD/rockstar-logo-strapline-sticker.png --------------------------------------------------------------------------------