-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathles15.dart
35 lines (30 loc) · 924 Bytes
/
les15.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
void main (){
// you can call your functions as you wish without problems ,,,
printHello();
//printHello(); -->
welcomeBack();
wcB2();
soundRec1();
goodBay1();
}
// how to make function | reCall function .. !!
// "void" is the return type of the function --> !! :) so
// remember main in the start line of dart its function... thats it.
//void main (){ } --> main = Function.
void printHello () {
print ("=========================");
print (" Hello Dear Customers");
print ("=========================");
}
void welcomeBack () {
print ("Welcome-back dear 'vesitor', How can i help you Today!! :)");
}
void wcB2 () {
print ("Please prepare Your info. Then Enter the code via SMS.. please after Alarm >>>");
}
void soundRec1 () {
print (" Sound Track ....MP4 etc.. Hello Dear ....");
}
void goodBay1 () {
print (" GOod Bay ..See Yaaaa Next Time .. Good Luck !!..");
}