import eprog.EprogIO;
/**
* EProg Uebung #3171
*
* This class implements main. Optionally you can call
* Vektoren.java with the commandline argument --debug to perform some
* selftests.
*
* java Vektoren --debug
*
* The main logic is implemented in Value, Scanner and Parser.
*
* @author Hannes Eder
* @see Value
* @see Scanner
* @see Parser
* @see TestVektoren#test_All
*/
public class Vektoren
{
public static void main(String[] args) throws Exception
{
boolean debug = false;
// eval command line arguments
for( int i=0; i