注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
名前¶ IO::All - IO::All of it to Graham and Damian! 概要¶ use IO::All; # Let the madness begin...... 名前¶ IO::All - IO::All of it to Graham and Damian! 概要¶ use IO::All; # Let the madness begin... # ファイル全体をスカラに入れる多くの方法のうちのいくつか io('file.txt') > $contents; # "arrow"のオーバーロード $contents < io 'file.txt'; # 反転しているが、同じ操作 $io = io 'file.txt'; # IO::All オブジェクトの作成 $contents = $$io; # スカラーのデリファレンスのオーバーロード $contents = $io->all; # すべてを読み込むメソッド $contents = $io->slurp; # そのための別のメソッド $contents = join '', $io->getli
2007/03/08 リンク