summaryrefslogtreecommitdiff
path: root/ccc/to_hex.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ccc/to_hex.cc')
-rw-r--r--ccc/to_hex.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/ccc/to_hex.cc b/ccc/to_hex.cc
deleted file mode 100644
index 6e577dc..0000000
--- a/ccc/to_hex.cc
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <iostream>
-
-using namespace std;
-
-
-int main(void)
-{
- int r = 116;
- int g = 10;
- int b = 10;
-
- cout << hex << r << " " << g << " " << b << endl;
-}
-