Skip to content

Instantly share code, notes, and snippets.

@reisdev
Created May 16, 2022 14:17
Show Gist options
  • Save reisdev/2890332034cd80214b477c92d445d814 to your computer and use it in GitHub Desktop.
Save reisdev/2890332034cd80214b477c92d445d814 to your computer and use it in GitHub Desktop.
Constantes em Swift
let helloWorld = "Hello world!"
// Tentando atribuir um novo valor:
helloWorld = "Novo valor"
/*
* Irá resultar em um erro:
* "Cannot assign to value: 'helloWorld' is a 'let' constant"
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment