-
The [Langium Lox example](https://github.com/langium/langium-lox) is a fairly complex sample language that shows a few advanced language features, such as expressions, member calls, functions (with in…
-
Hi
I am trying to use arcsecond for my toy language and am struggling a bit due to the lack of actual language examples to refer to.
I was hoping that if the examples for some simple languages be …
-
Since the Lox is a niche language, I better to teach the language to the users.
Present examples and constructions in the online version and in the examples folder.
See https://gobyexample.com/ as…
-
**What will you do?**
Inspired by [Crafting Interpreters](https://craftinginterpreters.com/contents.html)
I will be building a full-functioned Lox programming language compiler and a bytecode interp…
-
It seems that it is possible for us to add Lox as a language at Linguist. We will need to submit a PR to linguist (https://github.com/github-linguist/linguist) and complete the checklist:
1. The ex…
-
#### CHALLENGES
- [ ] The lexical grammars of Python and Haskell are not regular. What does that mean, and why aren’t they?
- [ ] Aside from separating tokens—distinguishing print foo from print…
-
This is a bit of a tall order but I reckon it will be doable. We need to go deeper. Writing the compiler to output Python will probably be most natural, but since the feature set is small (I don't see…
-
The words `term` and `factor` are being misused in Lox's parser.
A polynomial is a summation of _terms_ which are each a product of _factors_.
These are correctly used in the [Wikipedia article](h…
-
Hi,
Not an issue but a question : did someone map the sensors ID's to friendly readable names ? I have no idea what a ID_WEB_Temperatur_TEE can be, and eventually, witch ones are calculations, par…
-
* Add control flow statements: if, for, while to the Lox language