内容简介:See also:Nim has a syntax that is similar to Python.
6 Reasons to Use Nim
Nim is a programming language that has a syntax similar to Python but is compiled to binary code.
See also: Nim Books
1. Friendly Syntax
Nim has a syntax that is similar to Python.
2. High Performance
Nim is much faster than Python (not when comparing C libraries wrapped for Python of course). Nim code compiles first to C then to binaries, with C-like performance always a possibility.
3. Strong Typing
Nim has a strong type system, unlike Python where types can only be specified optionally. A typed language gives better information to the compiler for better optimizations.
4. Managed Memory
Memory leaks are not a concern as Nim uses one of several available garbage collectors. The new ARC option works with reference counting instead of a GC.
5. Package Manager
Nimble is a package manager which makes installing Nim libraries easy.
6. Version 1.0 Milestone
Nim has seen low levels of adoption, but this may be due to version 1.0 taking a long time to be released. Now released in September 2019 Nim has a good foundation for applications and libraries to build on.
Nim has good reasons to use it , but also has some disadvantages. These are likely to improve over the next few years.
See also: Nim Books
4 Disadvantages of using Nim
1. Small Community
Nim has a small following, which means few jobs are available, and the libraries and frameworks for Nim are lacking. C, C++ and Python libraries can be utilized, however, helping to bridge the gap.
2. Better concurrency/parallelism support needed
Nim supports threads, channels and async. However in general concurrency/parallelism needs more work.
Related article: an overview of the current state of Nim’s concurrency/parallelism features .
3. Unhelpful error messages
The Nim compiler often gives unhelpful error messages.
4. Web Frameworks are Lacking
Many languages became popular due to well developed web frameworks (e.g. Ruby has Rails, Elixir has Phoenix and Crystal has Amber, Lucky and others). Nim has Jester which still needs further development and documentation. There is also Karax which is a SPA web framework.
以上所述就是小编给大家介绍的《Pros and Cons of Nim》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
How to Think Like a Computer Scientist: Learning with Python
Allen B. Downey、Jeffrey Elkner、Chris Meyers / Green Tea Press / 2002-1-4 / USD 24.95
""How to Think Like a Computer Scientist"" is an introduction to programming using Python, one of the best languages for beginners. This is a Free Book -- you can download it from thinkpython.com. But......一起来看看 《How to Think Like a Computer Scientist: Learning with Python》 这本书的介绍吧!