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.

Christopher Gomez
Courses Plus Student 13,800 PointsTrying to follow video code not passing keep getting the error message
I get this
mcs program.cs && mono Program.exe
(1,12): error CS1525: Unexpected symbol .', expecting
,', ;', or
='
and this
mcs -debug Program.cs && mono --debug Program.exe
(1,12): error CS1525: Unexpected symbol Program'
(1,33): error CS1525: Unexpected symbol
debug'
3 Answers

Thor Giversen
771 PointsI think you are missing a { to start your while loop. Not sure if that will fix all the error messages though.
Good luck :)

Christopher Gomez
Courses Plus Student 13,800 PointsThor Giversen well there suppose to be one but didn't fix it I still get the same error I even tried copying the code in the teacher's notes to see if it passes but didn't

Christopher Gomez
Courses Plus Student 13,800 PointsJeremy Maclin you whats going on?
Christopher Gomez
Courses Plus Student 13,800 PointsChristopher Gomez
Courses Plus Student 13,800 Pointsusing System;
namespace Treehouse.FitnessFrog { class Program { static void Main() { int runningTotal = 0;
}