package de.hs_mannheim.informatik.spreadsheet; import java.io.FileNotFoundException; import java.util.Scanner; /** * Part of a simplified spreadsheet system for the PR1 programming lab at Hochschule Mannheim. * * @author Oliver Hummel */ public class Axel { public static void main(String[] args) throws FileNotFoundException { Spreadsheet spr = new Spreadsheet(10, 10); Scanner sc = new Scanner(System.in); while (true) { System.out.println(spr.toStringShowFormula()); System.out.println(spr); // TODO: You might want to put "UI loop" for entering value and formulas here resp. in some UI methods. } } }