An Angels Departing

BequestDeCendres::Maisettelingua.cette_int

Cette conditional that handles conditionals that specify an upper boundary condition.

def cette_int(condition)
  if condition
    yield
    
    return true
  end
  
  false
end
hp_comparison = cette_int($player_hp > player_hp_maximum) do
  puts "The player is at greater than eighty percent of their hp."
end