1. 本网站正在测试阶段
This website is in the test phase.
2. 如有任何问题,请联系我
If you have any questions, please contact me.
Contact Me
3. 网站未来规划
TODO:
4. 代码高亮测试
Test Code Highlight
sample code here
Python:
1 2 3 4 5 6
| print('hello world')
if __name__ == '__main__': a = 1 b = 2 print(a + b)
|
JavaScript:
1 2 3 4 5 6
| console.log('hello world') const a = 1 const b = 2 function add(a, b) { return a + b }
|
Java:
1 2 3 4 5
| public class Test { public static void main(String[] args) { System.out.println("hello world"); } }
|
C:
1 2 3 4
| int main() { printf("hello world"); return 0; }
|
Assembly:
1 2 3 4 5 6 7 8 9
| .data msg: .asciiz "hello world" .text main: li $v0, 4 la $a0, msg syscall li $v0, 10 syscall
|
Code Block: