Warning, /frameworks/syntax-highlighting/autotests/input/test.dart is written in an unsupported language. File is not indexed.

0001 /**
0002  * print a number
0003  * "helo"
0004  * 'string'
0005  */
0006 
0007 int printNum(int anum) {
0008     print("This is a $anum\n");
0009     print('This is a $anum\n \'world\'');
0010     if (anum == 1) {
0011         return 1;
0012     } else {
0013         return 2;
0014     }
0015 }
0016 
0017 // What are you doing?
0018 void main() {
0019     int nn = 10;
0020     bool boolean = true;
0021     printNum(nn);
0022 }