J
Julien REINAULD
Guest
Hi all!
According to std.standard:
TYPE string IS ARRAY ( positive RANGE <> OF character);
"hello" is a valid string litteral
"" is a valid string litteral too, it is the empty string.
Let
TYPE foo IS ARRAY ( positive RANGE <> OF integer);
(0, 1, 1, 2, 3, 5) is a valid foo litteral
What is the litteral for an empty foo?
Thx
Julien
According to std.standard:
TYPE string IS ARRAY ( positive RANGE <> OF character);
"hello" is a valid string litteral
"" is a valid string litteral too, it is the empty string.
Let
TYPE foo IS ARRAY ( positive RANGE <> OF integer);
(0, 1, 1, 2, 3, 5) is a valid foo litteral
What is the litteral for an empty foo?
Thx
Julien