From d79900449f69d52a49efa2606b2b6d02b4e667d5 Mon Sep 17 00:00:00 2001 From: randy Date: Thu, 27 Jun 2024 18:04:21 +0700 Subject: [PATCH] init --- .gitignore | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ build.bat | 9 +++++++++ main.cpp | 10 ++++++++++ 3 files changed, 74 insertions(+) create mode 100644 .gitignore create mode 100644 build.bat create mode 100644 main.cpp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cc717d3 --- /dev/null +++ b/.gitignore @@ -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 \ No newline at end of file diff --git a/build.bat b/build.bat new file mode 100644 index 0000000..1d0f9c0 --- /dev/null +++ b/build.bat @@ -0,0 +1,9 @@ +@echo off +rmdir /S /Q build +mkdir build + +pushd build + +cl ../main.cpp /Zi + +popd \ No newline at end of file diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..6bd983f --- /dev/null +++ b/main.cpp @@ -0,0 +1,10 @@ +#include + +int main() { + + int hello; + hello = 5; + + printf("Hello, balls!\n"); + return 0; +} \ No newline at end of file