.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT LANGUAGE


Examples: Fraction function
' Print the fractional part of PI
Print Fraction(PI)     ' Prints .141592653589793

'This example shows the relationship between Fix() and Fraction().

' Print PI

Print PI ' Prints 3.14159265358979

' Print the integer part of PI

Print Fix(PI) ' Prints 3

' Print the fractional part of PI

Print Fraction(PI) ' Prints .141592653589793

See Also