Created
February 27, 2021 03:36
-
-
Save enzodanjour/6ccf28a44f8a8454755cc9c5bfa7f598 to your computer and use it in GitHub Desktop.
dart
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 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