view example.d @ 16:cc494b8f8710

Added miniD test
author zzzzrrr <mason.green@gmail.com>
date Tue, 24 Mar 2009 13:29:16 -0400
parents
children 82efafc87d54
line wrap: on
line source

module example;

import minid.api;

void main(char[][] args)
{
	MDVM vm;
	auto t = openVM(&vm);
	loadStdlibs(t);
	importModule(t, args[1]);
}