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

@@ -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}"