view demos/qd1.d @ 983:6e68054cfc20

Fix out-ouf-source build for runtime as well. To build out-of-source, follow these steps: # [[Insert LLVM build instructions here]] mkdir my_build_dir cd my_build_dir svn co http://svn.dsource.org/projects/tango/trunk tango ccmake <PATH_TO_SOURCE> # (Regular ccmake stuff, press 'c' a few times followed by 'g') make make runtime # add `PWD`/bin to PATH closes #213
author Frits van Bommel <fvbommel wxs.nl>
date Thu, 19 Feb 2009 11:01:34 +0100
parents 22a56b65872b
children
line wrap: on
line source

module qd1;
import qd;
void main() {
  screen(640, 480);
  sleep(1);

  cls(Red);
  sleep(1);

  cls(Green);
  sleep(1);

  cls(Blue);
  sleep(1);

//   pset(10, 10);
//   line(0, 0, 100, 100, Box, Back(Red~Black));
//   for (int i=0; i<=100; i+=10) {
//     line(i, 0, 100-i, 100);
//     line(0, i, 100, 100-i);
//   }
//   circle(100, 100, 50, 15, White~Black, Fill=White~Black);
//   paint(200, 200, Red, Back=White);
//   circle(100, 100, 50, 15, White);
//   paint(200, 200, Black);
//   pset(10, 11); pset(10, 11, Black);
//   pset(10, 10);
//   sleep(1);
}