Write a method hello
that takes one argument and calls puts
so that the output if called with, e.g., hello("Alli")
would be Hello there Alli!
Write a class Player
that can be initialized with one argument name
and returns a player instance with the keys name
, health
and role
.
- The
name
key should be assigned the givenname
argument. - The
health
key should be a random integer from 50 to 100.