-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Common Criticisms
This is referring to systems like C#'s: void foo(ref int myInput){...}; foo(ref a);
. Note the ref on the foo
call. If this was Nim, it'd be impossible to tell from the call-site that foo
has the potential to modify a
.
Possibly. The problem here is that of what mental metaphor is being used. In many languages, heap allocation through pointers is the only method of having objects, and passing them to a function gives the freedom to modify them without any callsite annotations. In Nim, things can be allocated on the stack, and those things need to be treated in the same way as things on the heap.
proc foo(input: var T) = ...
proc foo(input: ref T) = ...
let a: ref T = ...
foo(a) # valid, this is Java-style
var b: T = ...
foo(b) # also valid
Note that the difference between what happens in Java and what Nim does is simply a matter of efficiency: Nim does not require our T
to be allocated on the heap, and it certainly allows b
to be declared with let
, which will force an compile-time error to be thrown.
Intro
Getting Started
- Install
- Docs
- Curated Packages
- Editor Support
- Unofficial FAQ
- Nim for C programmers
- Nim for Python programmers
- Nim for TypeScript programmers
- Nim for D programmers
- Nim for Java programmers
- Nim for Haskell programmers
Developing
- Build
- Contribute
- Creating a release
- Compiler module reference
- Consts defined by the compiler
- Debugging the compiler
- GitHub Actions/Travis CI/Circle CI/Appveyor
- GitLab CI setup
- Standard library and the JavaScript backend
Misc