This site requires JavaScript, please enable it in your browser!
Greenfoot back
LamboCreeper
LamboCreeper wrote ...

2015/3/18

Error: 'Reached End Of File While Parsing'

LamboCreeper LamboCreeper

2015/3/18

#
1
2
3
4
5
6
7
8
9
10
public class MrLinux extends Actor
{
    public void act()
    {
        if (Greenfoot.isKeyDown("W"))
        {
            move(5);
            System.out.println("[Movement] Key 'W' Pressed... Moved 5");
        }
    }// <--- Giving Error (Shows Red)
I get the error 'Reached end of file while parsing' when I compile it? Thanks.
lordhershey lordhershey

2015/3/18

#
you are missing a '}' character - it should be on line 11.
You need to login to post a reply.