Created
February 13, 2015 21:12
-
-
Save hauleth/b6d2225a5448c37cc310 to your computer and use it in GitHub Desktop.
Simple shell
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
#!/usr/bin/env ruby | |
loop do | |
print '> ' | |
exit 0 if gets.strip == 'exit' | |
puts 'USUŃ KONTO!' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment