aboutsummaryrefslogtreecommitdiff
path: root/test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test.cc')
-rw-r--r--test.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/test.cc b/test.cc
deleted file mode 100644
index 36f637d..0000000
--- a/test.cc
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <imgen.h>
-
-int main(int, char*[]) {
- imgen::write_ppm(
- "test.ppm",
- 500,
- 500,
- [](std::size_t x, std::size_t y) -> imgen::color {
- return imgen::color(255, x % 255, y % 255);
- }
- );
-}