RosettaCodeData/Task/Apply-a-callback-to-an-array/Elena/apply-a-callback-to-an-array.elena

9 lines
166 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import system'routines;
PrintSecondPower(n){ console.writeLine(n * n) }
2026-02-01 16:33:20 -08:00
public Program()
2023-07-01 11:58:00 -04:00
{
2024-03-06 22:25:12 -08:00
new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}.forEach(PrintSecondPower)
2023-07-01 11:58:00 -04:00
}