You are on page 1of 2

dart sdk path C:\Program Files\Dart\dart-sdk

Device name DESKTOP-E2D60SD


Processor 11th Gen Intel(R) Core(TM) i3-1115G4 @ 3.00GHz 3.00 GHz
Installed RAM 8.00 GB (7.74 GB usable)
Device ID 7BF5E28A-85D7-46D2-BC61-8DFF1C76857E
Product ID 00356-02705-61780-AAOEM
System type 64-bit operating system, x64-based processor
Pen and touch No pen or touch input is available for this display

Edition Windows 11 Home


Version 21H2
Installed on 8/24/2022
OS build 22000.1098
Experience Windows Feature Experience Pack 1000.22000.1098.0

Dart install NOTE:


Visit the dartlang.org website to learn more about the language, tools, and how to
get started with Dart.

Browse pub.dartlang.org for more packages and libraries contributed by the


community and the Dart team.

To update Dart using this installer, just run the Dart Update program.
INSTALLING DART AND SET UP ENVIRONMENTAL VARIABLE: https://www.youtube.com/watch?
v=sCmWRxjyuj0&t=149s

/*
var name='Jannat';
String age='nine';
print(name+age);
print('Hello world I am jannatul: ${test1.calculate()}!');
int a=100;
int b =2;
int c =5;
print (a+b+c);
print((a*b)+c);
print((a/b)+c);
// lecture 7
dynamic love= 'extra';
print(love);
//lecture 8
var address=78;
address=100;
print(address);
final road=3;
//const road =3;
print(road);
// lecture 10
for(var i=1;i<10;i++){
print('${i} dart');

// lecture 11 continue break


for(var i=1;i<10;i++){
if(i==4){
print('testing continue or skipping a step');
continue;
// i will not be printed. rest of the for loop will be skipped
}
if(i==9){
print('checking break . for loop will stop here');
break;
}

print('${i} dart');

}
// while looop
while(i=){

*/

You might also like