FP: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
FP( | FP(<[[numeric expression]]>) | ||
The '''FP''' [[internal function]] returns the fractional part of X. | The '''FP''' [[internal function]] returns the fractional part of X. |
Latest revision as of 19:35, 21 May 2014
FP(<numeric expression>)
The FP internal function returns the fractional part of X.
Comments and Examples
00010 print FP(3.1) 00020 print FP(-3.1)
Output:
0.1 -0.1