Jump to content

Apply a callback to an array: Difference between revisions

no edit summary
No edit summary
Line 802:
<lang nial>each (* [first, first] ) 1 2 3 4
=1 4 9 16</lang>
 
=={{header|Objeck}}==
<lang objeck>
use Structure;
 
bundle Default {
class Test {
function : Main(args : String[]) ~ Nil {
Run();
}
 
function : native : Run() ~ Nil {
values := IntVector->New([1, 2, 3, 4, 5]);
squares := values->Apply(Square(Int) ~ Int);
each(i : squares) {
squares->Get(i)->PrintLine();
};
}
function : Square(value : Int) ~ Int {
return value * value;
}
}
}
</lang>
 
=={{header|OCaml}}==
760

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.