Sha256: 82be159eec39a9e220feddec665d533f0c2e94a5f9fff965e3ffafe92494cd26

Contents?: true

Size: 622 Bytes

Versions: 1

Compression:

Stored size: 622 Bytes

Contents

# frozen_string_literal: true

# Math test
module WhakamatautauPangarau
  # Mathematics. Start a maths test
  def pangarau
    puts 'Nau mai. Please type the answer in Teo Reo Maori (e.g "tahi" for 1) when prompted'
    tau1 = rand(100).to_i
    tau2 = rand(100).to_i
    whakautu_tika = tau1 + tau2
    puts "#{tau1.inspect} + #{tau2.inspect}?"
    whakautu = eval(gets).to_i
    if whakautu == whakautu_tika
      puts 'Ka pai. Correct!'
    else
      puts "Incorrect. You put '#{whakautu.inspect} (#{whakautu})'.
  Correct answer is '#{whakautu_tika.inspect} (#{whakautu_tika})'"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
te_reo_maori-0.1.7 lib/te_reo_maori/whakamatautau_pangarau.rb