1234567891011121314151617181920 |
- int intFunction() {
- return 1;
- }
- bool boolFunction() {
- return true;
- }
- float floatFunction() {
- return 2.0;
- }
- void main() {
- int i = intFunction();
- print i;
- bool b = boolFunction();
- print b;
- float f = floatFunction();
- print f;
- }
|