blob: 9a05b2ae0dc7a684dac6b9b1af9bfc063186548d [file] [log] [blame]
module Module_25b =
def
pub mode Union_b = union (real,int);
pub proc union_b_string = (Union_b x) string:
case x
in (int): "int",
(real): "real"
esac;
skip
fed