[Introspector-developers] Can someone compile this
Status: Beta
Brought to you by:
mdupont
|
From: Gary F. <gar...@js...> - 2003-01-17 14:08:37
|
Howdy,
I just found out about this project and it looks like a winner!
I will not have a chance to build the gnu tools to use introspector but
would like to see what the XML looks like. I plan on using it to output
XML in the form I need for my project.
Could someone compile the Java source below and send me the XML out?
If I have some XML I can see if I can translate to my XML. Then I would
like to talk about doing that with introspector in general and talk
about adding rdf.
Thanks,
Gary
This is an example of some Java that would be compiled and loaded into a
Lego Mindstorms RCX robot. The bb library is the RCX Big Block library
in Java.
import josx.platform.rcx.Motor;
import josx.platform.rcx.Sound;
import bb;
public class box {
public static void main(String[] args) throws InterruptedException
{
for (myIx = 0, myIx < 4, myIx++) {
bb_Forward(A C 100);
bb_TurnLeft(A C 75);
}
}
}
|