I'm guessing that if you're asking this, you didn't write the code. I suggest reading the SKILL Language User Guide (it's like a book you might get in a bookshop on a language you're unfamiliar with, and is a great starting point). You'd print something either using println(params) - the println function can do a simple unformatted print of a single variable - or using the more powerful C-like printf() function. Or you could use pprint(params) if you want to pretty-print a list of values in a slightly more readable form (println will print it all on a single line). Regards, Andrew.
↧