Plus: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
PRanz (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
|||
Zeile 29: | Zeile 29: | ||
cos(0) + a --> returns 1 + a | cos(0) + a --> returns 1 + a | ||
1 + 'Hallo' --> returns 1Hallo | '1' + 'Hallo' --> returns 1Hallo | ||
'Hallo' + 'World' --> returns HalloWorld | 'Hallo' + 'World' --> returns HalloWorld |
Version vom 26. November 2020, 11:31 Uhr
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)