<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
Hi, <br><br>I'm was trying to use the turtle builder, and i was wondering if it can be used with the ordinary turtle commands (forward, right, left, repeat etc.)<br>I found part of this code in the web but i can't make it work, i don't know what is missing.<br><br>(clear)<br><br>(define (spiral n)<br>      (turtle-move n)<br>      (turtle-turn (vector 0 15 0))<br>      (if (> n 30)<br>          1<br>          (spiral (* n 1.02))))<br>(spiral 10)<br><br>(define (render)<br>      (turtle-reset)<br>      (turtle-prim 0))<br><br>(every-frame (render))<br><br><br>greets, <br>Luis<br><br><br>                                           </body>
</html>