-
Notifications
You must be signed in to change notification settings - Fork 1
standardtype
Tristan Hume edited this page Apr 23, 2012
·
3 revisions
#standardType
##Syntax A standardType is one of:
(a) int (b) real (c) string [ ( maximumLength ) ] (d) boolean (e) nat % natural number (f) intn % n-byte integer (n=1, 2, 4) (g) natn % n-byte natural (n= 1, 2, 4) (h) realn % n-byte real (n=4, 8) (i) char % single character (j) char(n) % n characters
##Description The standard types can be used throughout a program. They should not be included in an import list.
##See also int.html, real.html, string1.html and boolean.html. See also nat.html, int.htmln, nat.htmln, real.htmln, char.html, char.html(n)