replace sablevm and sablevm-classpath with sablevm-sdk, add a sablevm-mini package containing a minimal set of classes and a working example

git-svn-id: svn://svn.openwrt.org/openwrt/packages@6995 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2007-04-18 00:53:22 +00:00
parent 4a1f9acd06
commit 01108f8d7c
6 changed files with 137 additions and 161 deletions

View File

@ -0,0 +1,8 @@
class HelloWorld
{
public static void main(String args[])
{
System.out.println("Hello World!");
}
}