All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.vmzakharov.ecdataframe.util.SysOutPrinter Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.github.vmzakharov.ecdataframe.util;

public class SysOutPrinter
implements Printer
{
    @Override
    public void print(String value)
    {
        System.out.print(value);
    }

    @Override
    public void newLine()
    {
        System.out.println();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy