initial commit.

This commit is contained in:
2025-05-03 21:15:13 +07:00
parent 474bc266c7
commit 3b3025ee3a
15 changed files with 260 additions and 0 deletions

16
.vscode/codeblock.code-snippets vendored Normal file
View File

@@ -0,0 +1,16 @@
{
"DocuCodeBlock": {
"prefix": "codeblock",
"description": "Checks if the rocket is stable and prevents a crash if it's not.",
"body": [
"```${1:javascript:main.js} showLineNumbers {${2:3-4}}",
"function isRocketAboutToCrash() {",
" // Check if the rocket is stable",
" if (!isStable()) {",
" NoCrash(); // Prevent the crash",
" }",
"}",
"```",
],
}
}