-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathles13.dart
18 lines (17 loc) · 918 Bytes
/
les13.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import "dart:io";
void main () {
print ('------------------------- nullsafety examp. ---------------------------');
print ('This Examp. for Forcing small entry letter by users to Uppercase');
print ("-----------------------------------------------------------------------");
print ('please Enter your or-any/full name ... Its Free!!');
//Non-nullable & nullable by using ? !
//String x;
String? x; // --> its easy .. tShoot and "to prevent null entry by users and robots...:/
x= stdin.readLineSync();
//print (x.toUpperCase()); --> error .. var must be with ! while Strings useing ? as above..
print (x!.toUpperCase()); //--> for upper case change
print ("---------------------------------------------------------");
print ("do you get that.. Thanks & Good Luck by Adel MD.");
print ("---------------------------------------------------------");
//Thanks... Good Luck.
}