Displaying 1 result from an estimated 1 matches for "about_triangle_project_2".
Did you mean:
about_triangle_project
2012 Sep 21
3
(koans) another problem (syntax error)
...angle
# (represented by a, b and c) and returns the type of triangle.
#
# It returns:
# :equilateral if all sides are equal
# :isosceles if exactly 2 sides are equal
# :scalene if no sides are equal
#
# The tests for this method can be found in
# about_triangle_project.rb
# and
# about_triangle_project_2.rb
#
def triangle(a, b, c)
if ((a == b) and (b == c))
return :equilateral
if (((a == b) and (b != c)) or ((a != b) and (b == c)))
return :isosceles
if ((a !=b) and (b != c))
return :scalene
end
But I see this error message :
/about_triangle_project.rb:4:in `require'...