bayrell / BayLang

BayLang compiler source code
https://bayrell.org/ru/docs/baylang
Apache License 2.0
4 stars 0 forks source link

Карирование в PHP не работает #77

Open ildar-ceo opened 1 year ago

ildar-ceo commented 1 year ago
var a1 = new Collection();
fn push10 = curry Collection.push(?, 10);

a1 = a1
    |> push10
    |> push10
;