Skip to content

Instantly share code, notes, and snippets.

@enzodanjour
Created February 27, 2021 03:36
Show Gist options
  • Select an option

  • Save enzodanjour/6ccf28a44f8a8454755cc9c5bfa7f598 to your computer and use it in GitHub Desktop.

Select an option

Save enzodanjour/6ccf28a44f8a8454755cc9c5bfa7f598 to your computer and use it in GitHub Desktop.
dart
void main (){
String name = 'enzo lopes d\'anjour de souza';
int age = 21;
double height=1.78;
print('Hello my name is ${name.toUpperCase()}');
print('my name has ${name.split(' ').join('').length} letters');
print('I\'m $age years old');
print('I\'m $height metters tall');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment