Skip to content

Instantly share code, notes, and snippets.

View Bocom's full-sized avatar

Benjamin Röjder Delnavaz Bocom

View GitHub Profile
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
@Bocom
Bocom / gist:561776
Created September 2, 2010 02:58 — forked from Kulag/gist:561709
use v5.10;
use Mojolicious::Lite;
get '/' => sub {
shift->render(layout => 'page', text => 'hello world!', title => 'test');
};
get '/index' => 'index';
app->start;