mp3decoder finally passes the flow-down rule checking.
[IRC.git] / Robust / src / Tests / WriteFile.java
1 public class WriteFile {
2     public static void main(String []str) {
3         String filename="testfile000";
4         FileOutputStream fos=new FileOutputStream(filename);
5         String st=new String("adsasdasd");
6         fos.write(st.getBytes());
7         fos.close();
8     }
9
10 }