Porovnávané verzie

Kľúč

  • Tento riadok sa pridal
  • Riadok je odstránený.
  • Formátovanie sa zmenilo.

%Trunc function


Function
The function modifies real parameter (its trims the decimal part ) to of a real number.
Declaration


Blok kódu
languageesl
themeConfluence
REAL %Trunc(
   REAL in number
 )
Parameters


numberFunction argument.
Example


Blok kódu
languageesl
themeRDark
 REAL _A
 
 _A := %Trunc(15.237123)
 
 ; (_A is 15)