Benoit Giannangeli

Results 151 issues of Benoit Giannangeli

Bad error when statements outside of main/test

compiler

Event though a `ud` is stored on the heap and not in a `Value`, we could imagine being able to write a literal `ud` value rather than having to do...

language
proposal

```buzz typeof ("hello".split); ``` Crashes right now because `ObjNative` do not embark their type at runtime. In the case of list and maps, we use the same `ObjNative` for any...

bug
compiler

Right now user is forced to handle error in callback because we can't forward the error to the helper. We would need something like: ```buzz list.reduce::( fun (int i, int...

language

```buzz fun hey::() > void { [T] list = []; debug.dump(typeof list); } hey::(); ``` gives ``` type: 0x101d78400 `[generic type #18-0]` ``` expected ``` type: 0x101d78400 `[int]` ```

bug
compiler

Interactive tutorial in REPL

contributor friendly
REPL

```buzz float f = 1e10; ```

language

When you want to enforce that you want an object without specifying what type of object exactly: ```buzz fun serialize(obj object) > void { ... } ```

language
proposal

```buzz var subList = myList[0..4]; ```

language
proposal

https://rosettagit.org/ https://rosettacode.org/wiki/Rosetta_Code

contributor friendly