//BeanShell Script startX = 10; turtle.setFont(turtle.getFont().deriveFont((float)72.0)); turtle.setFont(turtle.getFont().deriveFont(Font.ITALIC)); turtle.setColor(Color.blue); turtle.setSmoothTrail(true); turtle.hop(startX, 150); turtle.drawText("smoothTrail = true"); turtle.hop(startX, 300); turtle.setSmoothTrail(false); turtle.drawText("smoothTrail = false");