From 781fb3978f6ea45fb876ede0c953c6b5166b7f8a Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E5=BA=95=E5=B1=82=E6=8A=80=E6=9C=AF=E6=A0=88?= Date: Sat, 15 Oct 2022 08:38:05 +0000 Subject: [PATCH] update README.md. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: 底层技术栈 --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fecdf73..672fd58 100644 --- a/README.md +++ b/README.md @@ -24,12 +24,14 @@ make in directory scf/parse run make, then get the executable file named 'scf'. 3. 写一段示例代码,例如: + int printf(const char* fmt); int main() { printf("hello world\n"); return 0; } + 保存为文件hello.c, write a code like above, and save it as 'hello.c'. @@ -56,10 +58,12 @@ the extended name of source code should be .c, though every name except .o,.a,.so will be considered as the source code, but .c is supported by all editors in syntax high-lighting. -8,scf对源文件扩展名的检测在main.c里,你可以把第66行的.c改成任何你想要的扩展名:( 但不能是.a,.so,.o. +8,scf对源文件扩展名的检测在main.c里,你可以把第66行的.c改成任何你想要的扩展名:( 但不能是.a,.so,.o。 + scf checks the extended name in Line 66 of main.c, you can revise to 'any' you want, except .a,.so,.o. 9,details in the code, details show you:( + 细节在源码里,可以给你看:( #### 参与贡献 -- 2.25.1