Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
algol68
/
execute
/
modules
/
module25b.a68
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