Created
November 1, 2011 12:37
-
-
Save canweriotnow/1330427 to your computer and use it in GitHub Desktop.
A quine and a wabbit walk into a bar...
This file contains 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
#!/usr/bin/env ruby | |
file = File.read(__FILE__) | |
name = "quinebunny-#{Time.now.to_s.gsub(/\s/, '')}.rb" | |
io = File.new(name, 'w') | |
io.write(file) | |
io.close | |
%x(ruby #{name}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment