10 15 1 Add

LANSA Technical

10.15.1 Add

Add adds the value specified in the Object parameter to the subject.

Input Parameters

Object – Value to be added to the subject

Example

 

#Float := #Float.Add(#Float2)

 

This is equivalent to writing

 

#Float += #Float2

 

or

 

#Float := #Float + #Float2 

 

Ý 10.15 Floating Point Intrinsic Functions