Ruby Typing Practice
Type the code below as fast and accurately as you can
Difficulty:
0
WPM
100%
Accuracy
0
Errors
60s
Timer
RubyMedium
module Greetable
def greet
"Hello, I'm #{name}"
end
end
class Employee
include Greetable
attr_reader :name
def initialize(name)
@name = name
end
end
Start typing to begin