Nim versions 1.4.4 and 1.2.10
nim-lang.org
Nim versions 1.4.4 and 1.2.10
1–10 of 44 posts
Re: Nim versions 1.4.4 and 1.2.10
#2I know Nim and Rust have good VS Code plugins that do that to some extent but it is not something I can rely upon.
Maybe I'm just spoiled.
Re: Nim versions 1.4.4 and 1.2.10
#3One thing I'm missing in all these languages is 100% auto-completion like the one you have in Java or C#. I have yet to experience a single instance of Intellij not being able to auto-complete something or not do it completely. I know Nim and Rust have good VS Code plugins that do that to some extent but it is not something I can rely upon. Maybe I'm just spoiled.
In my experience a lot of stuff that is auto-completed in java is boilerplate, stuff that I don't really need in python.
Re: Nim versions 1.4.4 and 1.2.10
#4One thing I'm missing in all these languages is 100% auto-completion like the one you have in Java or C#. I have yet to experience a single instance of Intellij not being able to auto-complete something or not do it completely. I know Nim and Rust have good VS Code plugins that do that to some extent but it is not something I can rely upon. Maybe I'm just spoiled.
Kite is doind pretty well for me in Python. In my experience a lot of stuff that is auto-completed in java is boilerplate, stuff that I don't really need in python.
Re: Nim versions 1.4.4 and 1.2.10
#5One thing I'm missing in all these languages is 100% auto-completion like the one you have in Java or C#. I have yet to experience a single instance of Intellij not being able to auto-complete something or not do it completely. I know Nim and Rust have good VS Code plugins that do that to some extent but it is not something I can rely upon. Maybe I'm just spoiled.
Re: Nim versions 1.4.4 and 1.2.10
#6Re: Nim versions 1.4.4 and 1.2.10
#7One thing I'm missing in all these languages is 100% auto-completion like the one you have in Java or C#. I have yet to experience a single instance of Intellij not being able to auto-complete something or not do it completely. I know Nim and Rust have good VS Code plugins that do that to some extent but it is not something I can rely upon. Maybe I'm just spoiled.
Re: Nim versions 1.4.4 and 1.2.10
#8One thing I'm missing in all these languages is 100% auto-completion like the one you have in Java or C#. I have yet to experience a single instance of Intellij not being able to auto-complete something or not do it completely. I know Nim and Rust have good VS Code plugins that do that to some extent but it is not something I can rely upon. Maybe I'm just spoiled.
Re: Nim versions 1.4.4 and 1.2.10
#9One thing I'm missing in all these languages is 100% auto-completion like the one you have in Java or C#. I have yet to experience a single instance of Intellij not being able to auto-complete something or not do it completely. I know Nim and Rust have good VS Code plugins that do that to some extent but it is not something I can rely upon. Maybe I'm just spoiled.
Most languages (that aren't Java) don't really need autocomplete.
Just as one example (more fully elaborated here [1]), there is no pointer arithmetic by default, but one can write a tiny little template to add those operators and then invoke it in a local scope like:
...surrounding code...
ptrMath:
let address = base + offset
...surrounding code...
In this way many different & arbitrary "generally unsafe but also sometimes very convenient" constructs can still be used at an author's discretion, but be used in a way to make a reader (perhaps) pay better attention in a way that is more specific than some "generically 'unsafe'" block.This is, of course, just the tip of a meta-programming iceberg.
Re: Nim versions 1.4.4 and 1.2.10
#10One thing I'm missing in all these languages is 100% auto-completion like the one you have in Java or C#. I have yet to experience a single instance of Intellij not being able to auto-complete something or not do it completely. I know Nim and Rust have good VS Code plugins that do that to some extent but it is not something I can rely upon. Maybe I'm just spoiled.
Most languages (that aren't Java) don't really need autocomplete.