home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #2
/
Amiga Plus CD - 2004 - No. 02.iso
/
AmigaPlus
/
Tools
/
Development
/
jamiga001
/
bin
/
JITTest.java
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Source
|
2004-01-31
|
268 b
|
12 lines
class JITTest {
public int retVal = 25;
public int jitFunc() {
return retVal;
}
public static void main(String[] args) throws Exception {
JITTest myJT = new JITTest();
System.out.println("Call to JIT Function returned: " + myJT.jitFunc());
}
}