class Item

Attributes

answers[RW]
student_id[RW]

Public Class Methods

new(student_id, answers = Hash.new) click to toggle source
# File lib/quizzer.rb, line 125
def initialize(student_id, answers = Hash.new)
  @student_id = student_id
  @answers = answers
end