Comment Re:What? (Score 1) 93
With Raku:
% perl6 -e 'say (-80538738812075974**3 + 80435758145817515**3 + 12602123297335631**3)'
42
With Raku:
% perl6 -e 'say (-80538738812075974**3 + 80435758145817515**3 + 12602123297335631**3)'
42
#!/usr/bin/perl
use Inline Python => <<'END_OF_PYTHON_CODE';
def add(x,y):
return x + y
def subtract(x,y):
return x - y
END_OF_PYTHON_CODE
print "9 + 16 = ", add(9, 16), "\n";
print "9 - 16 = ", subtract(9, 16), "\n";
You don't have to know how the computer works, just how to work the computer.