fix
Some checks failed
Deploy / build-and-deploy (push) Has been cancelled

This commit is contained in:
2026-06-14 07:18:50 -06:00
parent 504af39ff6
commit d798d56dbe
2 changed files with 3 additions and 3 deletions

View File

@@ -78,7 +78,7 @@ async function handleDebug() {
>
<template #actions>
<n-button quaternary type="primary" @click="copy">复制</n-button>
<n-button quaternary @click="handleFormat">整理代码</n-button>
<n-button quaternary @click="handleFormat">整理</n-button>
<n-button quaternary @click="reset">清空</n-button>
<n-button
v-if="code.language === 'python'"

View File

@@ -1,7 +1,7 @@
const cSource =
"#include<stdio.h>\r\n\r\nint main()\r\n{\r\n \r\n return 0;\r\n}"
"#include <stdio.h>\r\n\r\nint main() {\r\n \r\n return 0;\r\n}"
const cppSource =
"#include<iostream>\r\n\r\nusing namespace std;\r\n\r\nint main()\r\n{\r\n \r\n return 0;\r\n}"
"#include <iostream>\r\n\r\nusing namespace std;\r\n\r\nint main() {\r\n \r\n return 0;\r\n}"
const pythonSource = ""
const javaSource =
"public class Main {\r\n public static void main(String[] args) {\r\n \r\n }\r\n}"