Skip to content

Instantly share code, notes, and snippets.

@bragboy
Created November 12, 2015 11:18
Show Gist options
  • Select an option

  • Save bragboy/34f7baaa7c2b4997abdd to your computer and use it in GitHub Desktop.

Select an option

Save bragboy/34f7baaa7c2b4997abdd to your computer and use it in GitHub Desktop.
package nasa.implementation;
import nasa.main.Nasa;
public class TestMain {
public static void main(String args[]) {
try {
TestSignal test = new TestSignal();
Nasa n = new Nasa(test);
n.execute();
String finalPos = n.getFinalPosition();
System.out.println("Final position is : " + finalPos);
} catch (Exception e) {
e.printStackTrace();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment