aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/nu/closure.nu
blob: ef6301e4a2a72cc909bb02c9961a3da51a61e4a7 (plain) (blame)
1
2
3
4
5
6
do { |x, y|
  print ($x + $y);
  print ($x - $y);
  print ($x * $y);
  print ($x / $y);
}