AMOSi:Datatypes

From Amiga Coding
Revision as of 01:51, 17 November 2007 by Spellcoder (talk | contribs) (1 revision(s))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

AMOS allows you to use several types of variables in your programs.


Type Example Min Max
---------------------------------------------------------------


Integer A=3 -65536 65536


Single Precision A#=3.14159 1E-14 1E+15


Double Precision A#=3.1415926543 1E-307 1E+308


String A$="AMOS" 0 chars 65536 chars


Double Precision numbers and Single Precision numbers cannot be mixed in the same program. If you want to use double precision, insert a DOUBLE PRECISION command at the START of your listing.