Iaininio

Joined

50 Experience
0 Lessons Completed
0 Questions Solved

Activity

Posted in Help

Implement a Ruby method can_you_vote? that returns true or false depending on the given age.

This method should take one arguments (age), an Integer, and return a Boolean(true/false).
can_you_vote?(18) & can_you_vote?(30) should return true
can_you_vote?(16) should return false.

This is a question i was provided however i am constsantly getting syntax errors, i am in my first week of Ruby and have really hit a dead end.

my sytax error filled answer so far is:

def can_you_vote?(age)

if age > 17
print "True"
if (age) < 18
print "False"
end

can_you_vote?(18)
can_you_vote?(16)
can_you_vote?(30)

Any direction on where i am going wrong would be greatly appreciated