Skip to content
Snippets Groups Projects
Select Git revision
  • ef246389d9274f5938e0d9a8accc2180de18d285
  • main default protected
2 results

BusTP2-Q3.sql

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ShapeWriter.java 356 B
    package serializer;
    
    import shape.Shape;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.List;
    
    public class ShapeWriter {
        public static void write (File file, List<Shape> shapes) throws IOException {
            PrintWriter printWriter = new PrintWriter(file);
            printWriter.println("Coucou");
        }
    }