This Standard ML code compiles and I find it amusing

in #smllast year
datatype '_ ~ = && of '_ * '_
              | || of '_ * '_
              | ! of '_
              | ` of '_

infix || &&

fun \ ((\ && $) || (% && ?)) = (! \ || ! $) && (! % || ! ?)
  | \ ((\ || $) && (% || ?)) = (! \ && ! $) || (! % && ! ?)
  | \ ($ && %) = ! $ || ! %
  | \ ($ || %) = ! $ && ! %
  | \ (` $) = ! (` $)
  | \ (! $) = (` o `) $

fun main () = ()