stdlib: Add a void type

This commit is contained in:
Patrick Walton 2011-10-05 15:36:29 -07:00
parent 00a81a22a8
commit cf3e7f2f0b

View file

@ -17,6 +17,11 @@ pure fn rational_leq(x: rational, y: rational) -> bool {
}
pure fn orb(a: bool, b: bool) -> bool { a || b }
tag void {
void(@void);
}
// Local Variables:
// mode: rust;
// fill-column: 78;