adambard / adambard/learnxinyminutes-docs
[language/nim] confusing comment about immutable at the very start
- Langage dominant
- Markdown
- Étoiles
- 12.3k
- Forks
- 3.7k
- Merge moyen
- 13 h 10 min
- PR mergées (30 j)
- 6
Description
https://learnxinyminutes.com/docs/nim/
```nim
var # Declare (and assign) variables,
letter: char = 'n' # with or without type annotations
let # Use let to declare and bind variables *once*.
legs = 400 # legs is immutable.
const # Constants are computed at compile time. This provides
debug = true # performance and is useful in compile time expressions.
```
it's very unclear to me as a complete ignorant about the language (but not ignorant about many others) what let is vs const?
to me immutable literal is no different than a constant, what am I missing? (and/or how is it different from var ?)
maybe a better example would be
```nim
let
legs = someFunction()
const
clegs = 42
```
?
Guide de contribution
Ouvrir le guide de contribution
Évaluation
Cette issue n'a pas encore été évaluée.