In article <1166408804.168543.208980@n67g2000cwd.googlegroups.com>,
Mad_man_on_a_MissIon took the hamburger meat, threw it on the grill, and
I said "Oh Wow"...
> Here is the code:
>
[quoted text clipped - 12 lines]
> I run: javac Test.java
> java Test
public static void main(String[] args)
There is no no-argument main.

Signature
trippy
mhm31x9 Smeeter#29 WSD#30
sTaRShInE_mOOnBeAm aT HoTmAil dOt CoM
NP: "The American Way" -- Sacred Reich
"Now, technology's getting better all the time and that's fine,
but most of the time all you need is a stick of gum, a pocketknife,
and a smile."
-- Robert Redford "Spy Game"
> Here is the code:
>
[quoted text clipped - 12 lines]
> I run: javac Test.java
> java Test
when you run "java Test". it looks for the class Test (which it finds)
and then looks for public static void main(String[] args), which it
doen't find. Hence the error.
Try adding String[] args to your parameters.