#! mavscript --beanshell TEMPLATE.txt
# oder / or
#! mavscript-beanshell TEMPLATE.txt
#! mavscript -b TEMPLATE.txt


mavscript --beanshell
---------------------

Eingabe / input:
Länge / length l = 10.30 m
Breite / width b =  2.37 m
Höhe / hight   h =  4.80 m

Ausgabe / output:
Das Volumen beträgt V = l*b*h --> 117.1728 m³
Twice the volume is 234.3456 m³

Das Objekt ist länger als breit.
The object is rather high.

Ein Würfel mit dem selben Volumen 117.1728 m³ hat die Seitenlänge
A cube of that volume has the side length
λ = Math.pow(V, 1./3.) = 4.893379925822716 m.


# Anmerkungen / Notes
# -------------------
# BeanShell ist ein Interpreter der Programmiersprache Java.
# Es verwendet Variablen (auch Unicode), kann aber nicht symbolisch (algebraisch) rechnen.
# Das Handbuch zu BeanShell ist im Verzeichnis INFO/beanshell enthalten.
# 
# BeanShell is an interpreter of the programming language Java.
# It uses variables (unicode chars allowed), but it is not an algebra system.
# The BeanShell manual is included in the directory INFO/yacas.
