initial commit
This commit is contained in:
commit
1895f37d81
19
.gitignore
vendored
Normal file
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
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
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
6
bit-ops.c
Normal file
@ -0,0 +1,6 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("*** bit-ops pls ***\n");
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user