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.
This comment is hidden because it contains spoiler information about the solution
Are you sure? It does when I do it.
I don't see any reason why it should be any different.
outputs
Maybe the problem isn't in the println itself.
Only problem is that it is not showing in the output tab.
System.out.print("hello");
andSystem.out.println("hello");
should work in Java without importing.I would want to debug my code by addind some lines to the output with certain strings. How can I do that? I searched around and from what I've found I should be using console.out("String to print");, but this doesn't seem to be working at all. I cannot import java.lang and use System.out.println either. Can anyone point me towards a functional way to do this is this environment?