RosettaCodeData/Task/Variables/Phix/variables-2.phix

7 lines
144 B
Plaintext

type hour(integer x)
return x >= 0 and x <= 23
end type
hour h1, h2
h1 = 10 -- ok
h2 = 25 -- error! program aborts with a message