top | item 36019845

(no title)

nimmer | 2 years ago

The author should really look at Nim.

discuss

order

mrweasel|2 years ago

Isn't that more equivalent of "I really want to have a typed and compiled language, but I'd also like to keep the Python like syntax". Nim is an underrated language, it's easy to pick up and plenty fast.

kobzol|2 years ago

I will someday :) But unless there's Tensorflow and about a gazzillion other packages in Nim, it's not easy to switch.

esafak|2 years ago

The language is dandy, but it needs better tooling. If I wanted to support the project, that's where I'd direct my energy.

davidatbu|2 years ago

You know: this always tempts me, but I hold back because nim is not memory-safe (or has a clearly delineated memory-safe subset like Rust), and I would rather pick up an actually memory-safe (even if GCed) language even if some perf-cost (like F#, Ocaml, Swift, Vale ..etc).

cb321|2 years ago

There is a fairly clear subset of Nim which is memory safe. There are discussions once in a while to reduce that from a small set to one..two keywords, e.g.:

    https://forum.nim-lang.org/t/9280#61243
which has links to some others. The resolution is usually: Eh - it's already a very small set.

There also may well be libs (that you feel unable to not rely upon) which use these language constructs, and trust sure is tricky (in any PL ecosystem as well as just in life).