ACSUtils Wiki

An ACS library for ZDoom-based ports

User Tools

Site Tools


types

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
types [2017/04/15 18:01] korshuntypes [2017/07/09 16:09] korshun
Line 1: Line 1:
 ====== Types ====== ====== Types ======
  
-Types supported by ACC:+Types supported by [[ACC]]:
   * ''int'' -- a signed 32-bit integer, like ''1''   * ''int'' -- a signed 32-bit integer, like ''1''
   * ''str'' -- an ACS string, like %%''"Hello"''%%   * ''str'' -- an ACS string, like %%''"Hello"''%%
   * ''bool'' -- a boolean value, either ''true'' or ''false''   * ''bool'' -- a boolean value, either ''true'' or ''false''
  
-Types used in documentation but not supported by ACC:+Types used in documentation but not supported by [[ACC]]:
   * ''fixed'' -- a fixed-point 16.16 number, like ''1.0''   * ''fixed'' -- a fixed-point 16.16 number, like ''1.0''
   * ''num'' -- any kind of number, either ''int'' or ''fixed'', but do not mix different types of numbers in the same function call.   * ''num'' -- any kind of number, either ''int'' or ''fixed'', but do not mix different types of numbers in the same function call.