This commit is contained in:
anon 2024-10-18 09:15:43 +02:00
parent 4bb15e8c49
commit 03de7ac436
3 changed files with 5 additions and 2 deletions

1
.gitignore vendored Normal file

@ -0,0 +1 @@
256colors

@ -1,9 +1,11 @@
// @BAKE g++ $@ -O3 -o 256colors
#include <iostream>
#include <stdio.h>
#define WIDTH 5
#if WIDTH % 2 != 1
#error "WIDTH has to be odd"
# error "WIDTH has to be odd"
#endif
using namespace std;

@ -1,2 +1,2 @@
main:
g++ 256_colors.cpp -O3 -o 256_colors
g++ 256_colors.cpp -O3 -o 256colors