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 trialJoseph Frazer
5,404 PointsExpressions are not allowed at the top level ERROR
I keep getting this error message (Expressions are not allowed at the top level) when I try to run this code:
import Foundation
class BlogPost {
var title = "";
var body = "";
var author = "";
var numberOfComments = 0;
func addComment() {
numberOfComments += 1;
}
}
let firstPost = BlogPost();
firstPost.title = "Hello Classes!";
firstPost.author = "Joseph Frazer";
firstPost.body = "Hello";
firstPost.addComment();
let secondPost = BlogPost();
firstPost.title = "Goodbye Classes!";
firstPost.author = "Joseph Frazer";
firstPost.body = "Hello";
print(firstPost.numberOfComments);
print(secondPost.numberOfComments);
// Inheritance
class Car {
var topSpeed = 200;
func drive() {
print("Driving at /(topspeed)");
}
}
class Futurecar : Car {
func fly() {
print("Flying");
}
}
let myRide = Car();
myRide.topSpeed;
myRide.ride();
1 Answer
Jeff McDivitt
23,970 PointsIt the below
myRide.ride();
You do not have a method called ride; therefore, you cannot call it