8 lines
167 B
Text
8 lines
167 B
Text
import system'routines;
|
|
|
|
PrintSecondPower(n){ console.writeLine(n * n) }
|
|
|
|
public program()
|
|
{
|
|
new int[]::(1, 2, 3, 4, 5, 6, 7, 8, 9, 10).forEach:PrintSecondPower
|
|
}
|