comparison doodle/tk/misc.d @ 29:960b408d3ac5

Builds and runs ok with builder now. Still heaps of cleaning up to do, especially code roughly imported from dog.
author Graham St Jack <graham.stjack@internode.on.net>
date Mon, 03 Aug 2009 23:19:55 +0930
parents 1754cb773d41
children 2b9329ed0f0e
comparison
equal deleted inserted replaced
28:1754cb773d41 29:960b408d3ac5
1 module tk.misc; 1 module doodle.tk.misc;
2 2
3 double min(in double a, in double b) { 3 double min(in double a, in double b) {
4 return a < b ? a : b; 4 return a < b ? a : b;
5 } 5 }
6 6