modern-compiler-ml/tiger/testcases/test46.tig
jmug 33d8bac511 Add the tiger source code bundle from the book site
Signed-off-by: jmug <u.g.a.mariano@gmail.com>
2024-12-18 15:18:45 -08:00

8 lines
120 B
Text

/* valid rec comparisons */
let
type rectype = {name:string, id:int}
var b:rectype := nil
in
b = nil;
b <> nil
end