package fry;

import java.util.ArrayList;
import java.util.Arrays;
import java.io.IOException;
public class mainTest{
public static ArrayList<String> test() {
ArrayList<String> l_str = new ArrayList<String>(Arrays.asList(new String("test"), new String("test2"), new String("test3\n"), new String("test4\ntest5")));
return l_str;}

public static void main(String[] args) throws IOException{
ArrayList<String> my_str = test();
for (String s: my_str) {
IOUtils.Write(IOUtils.stdout, s);}
}
}
