14 lines
No EOL
259 B
C#
14 lines
No EOL
259 B
C#
using System.Text;
|
|
using LeoTurtle;
|
|
using SimpleDrawings;
|
|
|
|
Console.OutputEncoding = Encoding.UTF8;
|
|
|
|
Console.WriteLine("*** Simple Drawing ***");
|
|
|
|
Beach.Prepare<Turtle>(WalkPath, 50, 50);
|
|
|
|
static void WalkPath(Turtle turtle)
|
|
{
|
|
TurtlePath.Walk(turtle);
|
|
} |