Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Ah does this mean the int is immutable and I should declare it again?
My solution was exactly like this and I'm getting the error:
class Goals {
public static int laLigaGoals = 43;
public static int championsLeagueGoals = 10;
public static int copaDelReyGoals = 5;
public static int totalGoals;
totalGoals = laLigaGoals + championsLeagueGoals + copaDelReyGoals;
}
I'm trying to debug using System.out.println and can't see output on the output screen or the debugger in chrome. How can I see what I'm trying to debug?
This comment is hidden because it contains spoiler information about the solution