Hi all..
I am writing a class (as a plugin) where the output is an object of 2 strings and one integer. When running the plugin it is expected to show the following: "Hello 2 Worlds"
However, I just got Hello and the rest are simply skipped!!
Here is my code
public static Object[] helloWorlds(PluginContext context) {
return new Object[] { "Hello", new Integer(2), "Worlds" };
}
Would you please help me
Regards,