This commit is contained in:
randy 2024-06-27 18:04:21 +07:00
commit d79900449f
3 changed files with 74 additions and 0 deletions

55
.gitignore vendored Normal file
View file

@ -0,0 +1,55 @@
*.code-workspace
*.raddbgi
**/worlds
data
uid
*.rdbg
*.exe
*.pdb
.build/
*.sublime-workspace
*.sublime-project
*.vs
*.sln
*.vcxproj
*.vcxproj.*
*.log
*.ini
*.VC.db
*.obj
*.ilk
*.spall
release/
output.txt
*.blend1
renderdoc.cap
*.abs
*.asf
env.jai
save.txt
settings.txt
*_BRAIN
*_PLAYTEST
*_SYNC
*_TAG_LEGEND
*_LOCAL_CHANGES
*charlie.code-workspace
!proj/arcane/windows_glslc.exe
!proj/arcane/linux_glslc
!proj/arcane/macos_glslc
*TRACES/
fetch.bat
thing.bat
*crash-*
*.dmp
*crash.txt
*crash-uid.txt
*crash-version.txt
output2.txt
test_doc.vkn
*.focus-config
*keybinds
*.rdi

9
build.bat Normal file
View file

@ -0,0 +1,9 @@
@echo off
rmdir /S /Q build
mkdir build
pushd build
cl ../main.cpp /Zi
popd

10
main.cpp Normal file
View file

@ -0,0 +1,10 @@
#include <stdio.h>
int main() {
int hello;
hello = 5;
printf("Hello, balls!\n");
return 0;
}