Created
April 9, 2011 08:20
-
-
Save cnruby/911240 to your computer and use it in GitHub Desktop.
块代码与文件创建
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local_filename = "create_file_name.rb" | |
| doc =<<'FILE' | |
| # This is a text for the file #{local_filename}. | |
| FILE | |
| File.open(local_filename, 'w+') {|f| f.write(doc) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment