Kyle Anthony Williams

Results 57 comments of Kyle Anthony Williams

I really like this! On Sun, Oct 3, 2021 at 9:30 AM Iain Shorter ***@***.***> wrote: > > I too favour composition over inheritance. Actually in most cases I don't...

WASM FFI could actually be really cool; see https://wasmer.io/. On Mon, Nov 15, 2021, 6:16 PM Marcus S. Abildskov ***@***.***> wrote: > WASM? > > — > You are receiving...

So you want the code to become something like this? ```js arr.map(x => x * 2 * x) ``` Honestly, if you want something like this, it would be much...

> From what I understand most javascript interpreters will run the first map to completion before starting the second Generators solve this exact problem; both maps are running at pretty...

It makes the most sense for us to write this in Rust because of all the existing tooling: Official borrow checker: https://github.com/rust-lang/polonius TypeScript parser/linter: https://github.com/rslint/rslint Obviously, having Rust be the...

You're thinking of doing transpilation? That's an interesting idea, but I think writing our own complier will give us more control over the language. On Wed, Nov 10, 2021, 9:25...

What do you mean by this? Something like [C's `noreturn` macro](https://beej.us/guide/bgc/html/split/function-specifiers-alignment-specifiersoperators.html#noreturn)?

Oh, OK. So we want to make sure that BorrowScript disincentives use of labels, recursion, etc.? We could just not include labels in our TypeScript subset and have a small...

Let's have all of these tools accessible from a single binary, like Deno. On Thu, Sep 30, 2021, 8:18 AM David Alsh ***@***.***> wrote: > What will the CLI look...