Created with <3 with dartpad.dev.
Created
August 29, 2023 11:03
-
-
Save catalunha/a7f14f240ebff7aaf0e07b7b0aaf4e4c to your computer and use it in GitHub Desktop.
print
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
String texto = 'Aaa bbb'; | |
int numero = 1; | |
print(texto); | |
print(numero); | |
print('Texto: $texto'); | |
print('Número: $numero'); | |
print('Texto: $texto e Número: $numero'); | |
print('Texto: ${texto.toUpperCase()} e Número: ${numero + 1}'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment