Eul – The language
eul.im
Eul – The language
1–10 of 33 posts
Re: Eul – The language
#2Re: Eul – The language
#3It sounds interesting. Is the language open-sourced?
Re: Eul – The language
#4> Variables are immutable by default, globals are not allowed, functions are pure.
This is a huge non-sequitur.
Re: Eul – The language
#5Re: Eul – The language
#6Weird, the linux link on the front page of this website gives a 404
Aside: This is 64-bit. Is there a 32-bit version?
Re: Eul – The language
#7 dyld: Library not loaded: libnanovg.a
Referenced from: /Applications/eul.app/Contents/MacOS/./eul
Reason: image not found
Weirdly, `otool -L eul` tells me that eul links against no dynamic libraries whatsoever (not even libSystem) and `otool -l eul` backs this up. I'm really curious how Eul managed to have zero dynamic library dependencies in the Mach-O headers and yet clearly still depends on them (especially because on macOS you must link against libSystem or you can't even make syscalls).Re: Eul – The language
#8Re: Eul – The language
#9It sounds interesting. Is the language open-sourced?
> The language will be open-sourced later in 2018.
Current state of eul app also hinting that most likely nothing of value would be lost if this language won't be open-sourced.
[0] - https://github.com/eul-im/eul/issues/45#issuecomment-3356427...
Re: Eul – The language
#10- integration with C libraries
- overhead similar to C
- more productive than C
- "Variables are immutable by default, globals are not allowed, functions are pure."
That does sound an awful lot like Rust, at least if we kind of squint our eyes at the purity requirement :) I wonder if the original author considered it?