Exponentiation with infix operators in (or operating on) the base: Difference between revisions

Content added Content deleted
m (→‎{{header|Phix}}: like Go comment)
Line 218: Line 218:
-> $message, $ops {
-> $message, $ops {
say $message;
say $message;
for -5, 2, -5, 3, 5, 2, 5, 3 -> $x, $p {
for -5, 5 X 2, 3 -> ($x, $p) {
printf "x = %2d p = %d", $x, $p;
printf "x = %2d p = %d", $x, $p;
-> $op { printf " │ %s = %4d", $op, EVAL $op } for |$ops;
-> $op { printf " │ %s = %4d", $op, EVAL $op } for |$ops;