Skip to content

Instantly share code, notes, and snippets.

@catalunha
Created August 29, 2023 11:03
Show Gist options
  • Save catalunha/a7f14f240ebff7aaf0e07b7b0aaf4e4c to your computer and use it in GitHub Desktop.
Save catalunha/a7f14f240ebff7aaf0e07b7b0aaf4e4c to your computer and use it in GitHub Desktop.
print
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