Comment on Write a program that makes 2 + 2 = 5Comments−masak12yHere's the Perl 6 solution: multi infix:<+>(2, 2) { 5 } say 2 + 2; # 5
Comments
Here's the Perl 6 solution: