Recently I added C# .NET support to picoturtle. I was playing around generating waves... here's an example based on the sine function. And the C# Turtle code follows below.
using System;
using picoturtle;
namespace cspico
{
class MainClass
{
public static void Main(string[] args)
{
// Create the turtle before using
Turtle t = picoturtle.Turtle.CreateTurtle(args);
if (t != null) {
// Your code goes here
t.penup();
t.setx(0);
t.sety(250);
for(double i = 0; i < 500; i+=0.25) {
t.setx(i);
double sin = Math.Sin(i/15);
double y = sin * 100;
t.forward(y);
t.pendown();
int col = Math.Abs …