candy
candy copied to clipboard
🍭 A sweet, functional programming language that is robust, minimalistic, and expressive.
Bumps the typescript-eslint group in /vscode_extension with 2 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser). Updates `@typescript-eslint/eslint-plugin` from 7.0.2 to 7.4.0 Release notes Sourced from @typescript-eslint/eslint-plugin's releases. v7.4.0 7.4.0 (2024-03-25) 🚀 Features eslint-plugin:...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.11.20 to 20.12.2. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Closes: #659 Added optional condtions to match cases in RCST, AST, and HIR, which are resolved to if/else in MIR. ### Checklist - [ ] Tests for the changes have...
Closes: #984 This PR adds a WASM-VM based on wasmer to the environment. It also adds a WASM package. ### Checklist - [ ] Tests for the changes have been...
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.3.3 to 5.4.3. Release notes Sourced from typescript's releases. TypeScript 5.4.3 For release notes, check out the release announcement. For the complete list of fixed issues, check...
Closes: #828 ### Checklist - [ ] Tests for the changes have been added (for bug fixes / features) - [ ] Docs have been added / updated (for bug...
```candy listGetRange = generate (endExclusive | int.subtract startInclusive) { index -> list | get (startInclusive | int.add index) } ``` ```rust // https://github.com/candy-lang/candy/issues/715 // listGetRange = generate (endExclusive | int.subtract...
### Input ```candy checkEquals decodeFile "aaa,bbb,ccctext.newlinezzz,yyy,xxxtext.newline" (("aaa", "bbb", "ccc"), ("zzz", "yyy", "xxx")) ``` ### Actual Output ```candy checkEquals (decodeFile "aaa,bbb,ccctext.newlinezzz,yyy,xxxtext.newline") (("aaa", "bbb", "ccc"), ("zzz", "yyy", "xxx")) ``` ### Desired Output...
### Input ```candy ComplexNumber [ Real: value | real | fixedDecimal.negate, Imaginary: value | imaginary | fixedDecimal.negate, ] ``` ### Actual Output ```candy ComplexNumber [Real: value | real | fixedDecimal.negate,...