Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
algol68
/
execute
/
modules
/
module25a.a68
blob: 95950ba1c1cfc2b7eec00b28bee97b6af2303405 [
file
] [
log
] [
blame
]
module
Module_25a
=
def
pub mode
Union_a
=
union
(
int
,
real
);
pub proc union_a_string
=
(
Union_a
x
)
string
:
case
x
in
(
int
):
"int"
,
(
real
):
"real"
esac
;
skip
fed