3.3.5. 代码相关格式

Python 代码

# python示例
print("hello world!")

C 代码

#include <stdio.h>
int main() {
    printf("Hello World!\n");
}