Spaces:
Sleeping
Sleeping
File size: 948 Bytes
345a2be |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
[
{
"input": "print('hello",
"output": "print('hello')",
"language": "python"
},
{
"input": "def test()\n return 'hello'",
"output": "def test():\n return 'hello'",
"language": "python"
},
{
"input": "<div class=test>",
"output": "<div class=\"test\">",
"language": "html"
},
{
"input": "<p>Hello World",
"output": "<p>Hello World</p>",
"language": "html"
},
{
"input": "function test() {",
"output": "function test() {\n // 函数体\n}",
"language": "javascript"
},
{
"input": "const name = 'John'",
"output": "const name = 'John';",
"language": "javascript"
},
{
"input": ".test { color: red }",
"output": ".test { color: red; }",
"language": "css"
},
{
"input": "public class Test {",
"output": "public class Test {\n public static void main(String[] args) {\n \n }\n}",
"language": "java"
}
]
|