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.

James McGahan
203 PointsI'm getting a error that states "Could not find or load main class Introduction" Could i get some help?
import java.io.Console;
public class Introductions {
public static void main(String[] args) {
Console console = System.console();
// Welcome to the Introductions program! Your code goes below here
String firtName = "James";
//thisIsAnExampleOfCamelCasing
console.printf("Hello, my name is James");
console.printf("James is learning how to write Java");
} }
1 Answer

Jennifer Nordell
Treehouse TeacherHI there! According to your error message you are attempting to load the "Introduction" class, but your class is named "Introductions". Note that the latter is plural.
Hope this helps!