Skip to content

Instantly share code, notes, and snippets.

View frelian's full-sized avatar

Julian Niño frelian

  • Colombia
View GitHub Profile
@frelian
frelian / main.dart
Created April 13, 2023 23:46
1) Hello world Dart
void main() {
var myName = 'Julian';
print('Hello $myName');
}
@frelian
frelian / main.dart
Created April 13, 2023 23:40
For 1 Dart 
void main() {
for (int i = 0; i < 5; i++) {
print('hello - ${i + 1}');
}
}