ZenScript main repository
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
1234567891011 |
- //val x = ((a as string) => "hello" + a) as function`auto(a as string) as string`auto;
- //invokeFunctional(x);
-
- val y = (a as int, b as int) => a + b;
-
-
- //invokeFunctionalInt((a, b) => a + b);
- invokeFunctionalInt(y);
-
-
- println(((x as int) => x)(10));
|