Skip to content

Instantly share code, notes, and snippets.

View breethomas's full-sized avatar
🦂

Bree Thomas breethomas

🦂
View GitHub Profile

Example!!

Challenge 5

I used these elements and specified these styles to make this thing happen. I chose to use white text color because you can't see it if it's black. (duh). (When you write this make your actual description more meaningful...)

Challenge 5

# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
class Phrase
attr_reader :expression
def initialize(expression)
@expression = expression
end
def word_count
words.each_with_object(Hash.new(0)) do |word, count|
count[word] += 1