Okay.. so, this may sound stupid. I have two classes. Foo.class, and Bar.class
Foo.class’ Code:
public static void main(String[] args){ startBar(); }
Bar.class’ Code:
public static void main(String[] args){ echo "HI"; }
I want the output to be “HI”.. As in, i want to start my secondary class inside the first one.. I am probably doing a horrible job at explaining this. Things to keep in mind if you do understand what i want, i don’t want a process builder that starts the bar.class.. I need it to all run in the one thingy..
Foo class
Bar class