# Docs for Sample Target

This is a pure javascript sample target for [Microsoft MakeCode](https://makecode.com). 
For more information about setting your own target, 
see https://makecode.com/packages .

You can embed code snippets and [more](https://makecode.com/markdown)

```blocks
loops.forever(() => {
    turtle.turn(Direction.Left, 10);
    turtle.forward(1);
});
```
