types 288 B

123456789101112131415161718192021222324
  1. struct A {
  2. int a;
  3. };
  4. int intFunction() {
  5. return 1;
  6. }
  7. int boolFunction() {
  8. return true;
  9. }
  10. float floatFunction() {
  11. return 2.0;
  12. }
  13. void main() {
  14. int i = intFunction();
  15. test(i);
  16. int b = boolFunction();
  17. test(b);
  18. float f = floatFunction();
  19. test(f);
  20. }