Skip to content

Instantly share code, notes, and snippets.

@noqisofon
Created November 11, 2010 02:52
Show Gist options
  • Save noqisofon/671908 to your computer and use it in GitHub Desktop.
Save noqisofon/671908 to your computer and use it in GitHub Desktop.
ファイルを表示するだけの silicone(ry スクリプト。
using std;
using std.io;
let ( stream : FileOutputStream = FileOutputStream.open( "sample.txt" ) ) {
stream.each_line ( line : string ) => {
console.puts line.chomp
};
} ensure {
stream.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment