.

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: End statement
' The End statement terminates execution of the script
' that is running when the function is called.
Function Func1 ()
  Print 1
  End                 ' Terminates program execution
  Print 2             ' Never executed
End Function           ' Ends the function definition
Func1
' Output:
' 1

See Also