Plus
Zur Navigation springen
Zur Suche springen
Zugehörige Evaluatoren
- MathEvaluator
Beschreibung
Bei der Addition werden zwei Objekte addiert.
Syntax
a + b plus(a,b)
Parameter
Return Value
- Gibt ein Objekt zurück.
Die Rückgabe ist abhängig von der Eingabe. Dabei wird soweit wie möglich die Eingabe ausgerechnet.
Beispiele
3 + 5 --> returns 8 1/2 + 3/2 --> returns 2 2 + a --> returns 2 + a b + c --> returns b + c sin(x) + z --> returns sin(x) + z cos(0) + a --> returns 1 + a '1' + 'Hallo' --> returns 1Hallo 'Hallo' + 'World' --> returns HalloWorld vector(1,2) + vector(2,3) --> returns vector(3,5)