Lonami

Results 705 comments of Lonami

Although templating values and keeping comments around is still kind of weird. Maybe just bundle the config file for PyPi or something.

@expectocode any suggested syntax or that's yet to be decided?

> **Q**: What to do with never-assigned variables? If I remember correctly, every variable starts out as `null` (so if you don't set any value to `x` but reference it,...

Note that my `Instruction` is not a `str` subclass. I am not sure how benefitial it would be to store a tree of mlog instructions. Pattern matching in Python isn't...

Something cool that would be great to have to benefit from this [Structural Pattern Matching](https://www.python.org/dev/peps/pep-0635/). Too bad the PEP is only a draft.

Damn, PEP was accepted 2 days ago on 8th of February. Cool.

> Huh, I learn something new. I didn't know that thing with squary brackets is tuple (not a list) and it's immutable Sorry I didn't make it clear. That was...

As another example, if *pyndustric* compiled: ```python a = "Hey" ``` to ``` write 72 cell1 0 write 101 cell1 1 write 121 cell1 2 ``` then ```python print(a) ```...

> where print(number) here would go through massive switch case With 95 printable characters, assuming the switch consists of `set _tmp = "a"; jmp _ret` for each letter, the switch...

There is a problem implementing tuples (roughly "statically sized arrays") when variables are dynamically typed with no way of knowing a variable's type at runtime or compile time. Essentially, a...