Friday, September 21, 2012

[Rails] (koans) another problem (syntax error)

Hello,

I now trying to solve this one :

# Triangle Project Code.

# Triangle analyzes the lengths of the sides of a triangle
# (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': ./triangle.rb:27: syntax error, unexpected $end, expecting kEND (SyntaxError)
    from ./about_triangle_project.rb:4
    from path_to_enlightenment.rb:18:in `require'
    from path_to_enlightenment.rb:18


Can anyone give me a tip what I have done wrong ?

Roelof


--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/TG8qx9xODCYJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home


Real Estate