You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
262 B
17 lines
262 B
5 years ago
|
void main(List<String> arguments) {
|
||
|
print(1);
|
||
|
// #[release[google]]
|
||
|
// print(2);
|
||
|
// #[release[!asd]]
|
||
|
// print(3);
|
||
|
// #[debug]
|
||
|
// print(4);
|
||
|
// #[release[test]]
|
||
|
// print(5);
|
||
|
// #[[test asd]]
|
||
|
// print(6);
|
||
|
// #[[]]
|
||
|
// print(7)
|
||
|
// #[[]]
|
||
|
}
|