Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $py = `python3 -c \"print($d)\"`;
    print "$py\n";
    # prints 5e-324
    
  2. or download this
    C:\>perl -le "print 2 ** -1074;"
    4.94065645841247e-324
    
  3. or download this
    $ python3 -c "print(2 ** -1074)"
    5e-324
    
  4. or download this
    C:\>perl -le "print 'ok' if 5e-324 == 4.94065645841247e-324;"
    ok