= #JxnPortable\docs\applet_examples\Calculator1.jxn

! <- DE: Kommentare beginnen mit '!'
! <- EN: comments start with '!'

! DE: einfache Arithmetik
! EN: simple arithmetic
3 + 5
 = 8 (int)
10.7 - 25 / 8
 = 7.574999999999999 (double)
! DE: Zeilen, die mit " = " beginnen, enthalten Rechenergebnisse: = Wert (Datentyp)
! EN: lines starting with " = " show the generated results: = value (data type)

! DE: Arithmetik mit Variablen
! EN: arithmetic with variables
a = 3
 = 3 (int)
b = 5.5
 = 5.5 (double)
a ( b - 2^a )
 = -7.5 (double)
! DE: jxn verwendet '^' als Exponentiationsoperator
! EN: jxn (other than Java) uses '^' as exponentiation operator