Create a World object and a Turtle object and use the Turtle object to draw a star.
What will be an ideal response?
```
public void drawStar ( int l en )
{
this . turn ( 1 8 ) ;
this . forward ( l en ) ;
this . turn ( 1 4 4 ) ;
this . forward ( l en ) ;
this . turn ( 1 4 4 ) ;
this . forward ( l en ) ;
this . turn ( 1 4 4 ) ;
this . forward ( l en ) ;
this . turn ( 1 4 4 ) ;
this . forward ( l en ) ;
this . turn ( 1 2 6 ) ;
}
```
You might also like to view...
Hosting a photo shoot is like hosting a______________?
Fill in the blank(s) with correct word
Answer the following statements true (T) or false (F)
1) When using a namespace, the prefix must always be included. 2) Document authors can create a namespace prefix named xml. 3) Document authors can create a namespace prefix named xml. 4) To eliminate the need to precede each element with a namespace prefix, document authors can specify a default namespace. 5) DTDs and schemas are used to define structure for XML documents.