annotate tests/pprint.ur @ 2261:f81f1930c5d6

Fix SQL-parsing and declaration-ordering bugs.
author Ziv Scully <ziv@mit.edu>
date Wed, 30 Sep 2015 00:33:52 -0400
parents 318ba997a149
children
rev   line source
adam@1727 1 fun isNone [a] (x : option a) =
adam@1727 2 case x of
adam@1727 3 None => True
adam@1727 4 | Some _ => False