initial commit

This commit is contained in:
surtur 2020-10-31 12:47:08 +01:00
commit 1895f37d81
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
4 changed files with 31 additions and 0 deletions

19
.gitignore vendored Normal file

@ -0,0 +1,19 @@
### CMake ###
CMakeLists.txt.user
CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
Makefile
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake
_deps
### CMake Patch ###
# External projects
*-prefix/
*.swp
bit-ops

3
CMakeLists.txt Normal file

@ -0,0 +1,3 @@
cmake_minimum_required(VERSION 3.8)
project (bit-ops)
add_executable(bit-ops bit-ops.c)

3
README.md Normal file

@ -0,0 +1,3 @@
# bit-ops
this repo holds sawce for a bit-wise operations fun little program

6
bit-ops.c Normal file

@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("*** bit-ops pls ***\n");
return 0;
}