Skip to content

Commit 4584079

Browse files
Create dart_application_1.dart
1 parent 173cb7b commit 4584079

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

bin/dart_application_1.dart

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
void main(List<String> arguments) {
2+
print('Hello world!');
3+
var age = 25;
4+
var name = 'Shravya';
5+
var Myage = 'i am $name $age years old';
6+
print(Myage);
7+
// var x = {-90.abs()};
8+
// var x = {90.89.ceil()};
9+
var x = {90.89.floor()};
10+
print(x);
11+
var xis = 'the absolute is $x';
12+
print(xis);
13+
var multi = '''this is
14+
multi line
15+
string''';
16+
print(multi);
17+
print(multi[2]);
18+
}

0 commit comments

Comments
 (0)