Ejemplo n.º 1
0
 /**
  * Unit tests the {@code DirectedEdge} data type.
  *
  * @param args the command-line arguments
  */
 public static void main(String[] args) {
     DirectedEdge e = new DirectedEdge(12, 34, 5.67);
     StdOut.println(e);
 }