This code is also written in the Dart programming language and defines a main() function that demonstrates some basic data types and variable declarations in Dart. Here's a breakdown of what's happening in this code:
void main() { var a=10; print(a.runtimeType); int b=25; print('The Value of b is ${b}'); double x=25.3; print(x.runtimeType); String y='Joes'; print(y.runtimeType); dynamic z; z=10; print('The Value of Z ${z} type : ${z.runtimeType}'); z=25.5; print('The Value of Z ${z} type : ${z.runtimeType}'); }To download raw file Click Here
int The Value of b is 25 double String The Value of Z 10 type : int The Value of Z 25.5 type : doubl
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions