<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    I had to try this one for myself just to make sure it actually
    worked.<br>
    <br>
    <b>liar.p6:</b><br>
    <hr size="2" width="100%"><tt>#!/usr/bin/env perl6</tt><tt><br>
    </tt><tt><br>
    </tt><tt>use v6;</tt><tt><br>
    </tt><tt><br>
    </tt><tt>my $foo = True but False;</tt><tt><br>
    </tt><tt>say $foo;</tt><br>
    <hr size="2" width="100%"><b>Output:</b><tt></tt><br>
    <hr size="2" width="100%"><tt>$ ./liar.p6</tt><tt><br>
    </tt><tt>False</tt><br>
    <br>
    Note that this is only true (but False) for the value of <tt>$foo</tt>.
    It does not re-define <tt>True</tt> as <tt>False</tt> globally.<br>
    <br>
    P.S. This is evil. :)<br>
  </body>
</html>