Skip to content

Instantly share code, notes, and snippets.

@kgashok
Created December 19, 2015 03:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kgashok/170c534c1a02cdd83cf9 to your computer and use it in GitHub Desktop.
Save kgashok/170c534c1a02cdd83cf9 to your computer and use it in GitHub Desktop.
JsilSample
using System;
using JSIL;
using JSIL.Meta;
public static class Program {
public static int x = 10;
public static int y = 20;
public static void Main () {
dynamic document = Builtins.Global["document"];
dynamic window = Builtins.Global["window"];
var canvas = document.createElement("canvas");
var ctx = canvas.getContext("2d");
var body = document.getElementsByTagName("body")[0];
Console.WriteLine("Hello JSIL World!");
body.appendChild(canvas);
window.setInterval((Action)(() => {
Redraw(ctx);
}), 25);
}
public static void Redraw (dynamic ctx) {
x += 2;
ctx.clearRect(0, 0, 300, 300);
ctx.fillStyle = "red";
ctx.fillRect(x, y, 20, 20);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment