My new programming language, Flux #191645
Replies: 2 comments
-
|
This looks really interesting, especially the zero-copy reinterpretation and bit-level operations. Out of curiosity, how are you handling memory safety with features like Packet pkt from bytes? Is there any validation layer, or is it intentionally low-level like C? Also, do you have plans for tooling around the language (e.g. debugging or build system integration)? That’s usually where things get really interesting. Nice work, looks like a fun project to follow. |
Beta Was this translation helpful? Give feedback.
-
|
There is a minimal validation, it is intentionally low level like C. Yes I definitely plan to add debugging, a build system, and an LSP. Thank you for the kind words! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Discussion Type
Show & Tell
Discussion Content
Hello, everyone!
I am here to present Flux, my new programming language.
It's statically typed, compiles to native binaries, and offers the power of C with the ergonomics of Python.
Here's Hello World:
Here's zero copy byte reinterpretation:
Here's an example of bit slicing:
Beta Was this translation helpful? Give feedback.
All reactions