RosettaCodeData/Task/Function-definition/Chapel/function-definition-2.chpl
2026-04-30 12:34:36 -04:00

4 lines
54 B
Chapel

proc multiply(a : ?t ... 2)
{
return a(0) * a(1)
}