I prefer orange one
Magic Cursor

网站测试公告 | WebSite Test Notice

发布日期:2023-03-27 文章字数:0.2K

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:

1
Test code block