Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

david majaya
2,170 Pointsi'm stuck guys help me thanx in advance
namespace Treehouse.CodeChallenges
{
class Frog
{
public readonly int TongueLength;
public readonly int ReactionTime;
public Frog(int tongueLength)
{
TongueLength = tongueLength;
}
public bool EatFly(int distanceToFly)
{
return TongueLength >= distanceToFly;
}
}
}
2 Answers

John Muraski
3,144 PointsNot sure exactly what your stuck on here.
But a couple of things to look at: -if TongueLength is not a global variable, then the class here can't access it, which will throw an error -try putting this instead if TongueLength is in scope: return (TongueLength >= distanceToFly);
But unless we know what your error is, not much else we can say.

Steven Parker
220,416 PointsI don't see any obvious errors in this code.
It's a bit hard to see since the code is not formatted for Markdown, but "TongueLength" is a class variable.

John Muraski
3,144 PointsAh, gotcha. I see it now.
Steven Parker
220,416 PointsSteven Parker
220,416 PointsStuck how? What are you trying to accomplish?
If this is for a code challenge, please provide a link to the course page.
Use the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area.
Or watch this video on code formatting.