packagejavacleta;importjavafx.application.Application;importjavafx.scene.Scene;importjavafx.scene.canvas.Canvas;importjavafx.scene.canvas.GraphicsContext;importjavafx.scene.layout.Pane;importjavafx.stage.Stage;publicclassjavacletaextendsApplication{publicstaticvoidmain(String[]args){Application.launch(args);}@Overridepublicvoidstart(Stagestage){Canvascanvas=newCanvas(400,200);GraphicsContextgc=canvas.getGraphicsContext2D();gc.setLineWidth(2.0);gc.strokeLine(200,50,300,50);Paneroot=newPane();root.setStyle("-fx-padding: 10;"+"-fx-border-style: solid inside;"+"-fx-border-width: 2;"+"-fx-border-insets: 5;"+"-fx-border-radius: 5;"+"-fx-border-color: blue;");root.getChildren().add(canvas);Scenescene=newScene(root);stage.setScene(scene);stage.setTitle("Óyeme Carlos llévame en tu Bicicleta");stage.show();}}