()
| 19 | new Vehicle(), new Amphibian(), "hi", 47); |
| 20 | } |
| 21 | static |
| 22 | Tuple5<Vehicle, Amphibian, |
| 23 | String, Integer, Double> k() { |
| 24 | return tuple(new Vehicle(), new Amphibian(), |
| 25 | "hi", 47, 11.1); |
| 26 | } |
| 27 | public static void main(String[] args) { |
| 28 | Tuple2<String, Integer> ttsi = f(); |
| 29 | System.out.println(ttsi); |