I am able to run this on the eclipse but I can't run it using sublime3, how's it that?
public class TestStdDraw {
public static void main(String[] args) {
StdDraw.setPenRadius(0.05);
StdDraw.setPenColor(StdDraw.BLUE);
StdDraw.point(0.5, 0.5);
StdDraw.setPenColor(StdDraw.MAGENTA);
StdDraw.line(0.2, 0.2, 0.8, 0.2);
}
}
and following the not that Note: ".\StdDraw.java uses or overrides a deprecated API." and "Recompile with -Xlint:deprecation for details.", it still comes up with the same error.