Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAdrian Lebita
2,298 PointsMy code works in intelli J not in the challenge for the Tree House Story. Prompter class does not exist?
''''java package com.teamtreehouse;
import java.util.Arrays; import java.util.List;
public class Main {
public static void main(String[] args) {
Prompter prompter = new Prompter();
prompter.storyTemplate();
prompter.run();
}
}
'''
1 Answer
Mary McCallum
5,483 PointsHi Adrian, I found this really helpful post here: https://teamtreehouse.com/community/looks-like-you-didnt-present-the-treestory3
Adrian Lebita
2,298 PointsAdrian Lebita
2,298 PointsReally like to move on but this challenge is bugging me. Could someone please help.
MAIN CLASS
PROMPTER CLASS