Is this static println function in out class from System namespace?
println
out
System
namespace System { class out { static println ...
System is the java class.
out is the instance and also static member of PrintStream.
println is the method of PrintStream.