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
## Basic Ruby Project Skeleton Generator | |
class Project | |
def initialize() | |
puts "What do you want to call this project?\n" | |
print "> " | |
$user_input = $stdin.gets.chomp | |
end |