I just got into Java programming (i prefer php
How did the php tag for BBcode come into the phpDN forum, and how difficult would it be to incorporate it into a "JavaDN" forum?
I just want a phpDN equivalent for Java!
Moderator: General Moderators
Code: Select all
import org.somepackage.Foo;
/**
* Some DocBook comments here.
*/
class App
{
/**
* Comment blah blah.
* @param String[] Command line arguments
* @throws FooException If Foo doesn't like you.
*/
public static void main(String[] args)
{
//Normal comment
Foo foo = new Foo();
foo.dispatch();
}
}