guigui0246

Results 36 comments of guigui0246

I have the same "should NOT have additional properties" "wires" for a blueprint, mine has been made in 1.x and never modified since **but** exported from 2.x

It's missing the `elif`

> > It's missing the `elif` > > Good catch! But I don't think `elif` should be part of it. `elif` is exactly `file` in reverse. To prove that, here...

> I wonder if negative equals could be used in declarations > > ```java > const const name ;= "Bob"! > > print(name == "Bob")! // false > print(name ==...

And of course: ```java var var name ≠ "Bob"! name ≠≠ "Bob"! print(name == "Bob")! // maybe print(name ≠ "Bob")! // false print(name == "Lu")! // maybe ```

> For folders you could just do something like this: > > ```java > ===== /src/add.db ===== > function add(a, b) => { > return a + b! > }...