Clarify example on immutable variable

This commit is contained in:
Igor Irianto 2021-02-10 14:37:18 -06:00 committed by GitHub
parent 9fd68f178e
commit 66439f1bf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,14 +40,7 @@ You can define an immutable variable with `const`.
```
const waffle = "waffle"
echo waffle
"return waffle
const waffle = "pancake"
" returns error
let waffle = "pancake"
" throws an error
```