types 264 B

1234567891011121314151617181920
  1. int intFunction() {
  2. return 1;
  3. }
  4. bool boolFunction() {
  5. return true;
  6. }
  7. float floatFunction() {
  8. return 2.0;
  9. }
  10. void main() {
  11. int i = intFunction();
  12. print i;
  13. bool b = boolFunction();
  14. print b;
  15. float f = floatFunction();
  16. print f;
  17. }