summaryrefslogtreecommitdiff
path: root/docs/appendix-a.md
diff options
context:
space:
mode:
authorMengying <wangmychn@gmail.com>2016-09-11 10:10:02 +0800
committerGitHub <noreply@github.com>2016-09-11 10:10:02 +0800
commit4cfd73d61350b2a862f180e1c87c27ba8eb3e7d9 (patch)
tree00751e70fcfc835513d1303d9ffd7301568d281a /docs/appendix-a.md
parentd90369122322f1de5049deba6ebe88b787e993ec (diff)
downloadfsfs-zh-4cfd73d61350b2a862f180e1c87c27ba8eb3e7d9.tar.xz
Update appendix-a.md
Diffstat (limited to 'docs/appendix-a.md')
-rw-r--r--docs/appendix-a.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/docs/appendix-a.md b/docs/appendix-a.md
index f43c6c4..b6a76c6 100644
--- a/docs/appendix-a.md
+++ b/docs/appendix-a.md
@@ -12,10 +12,6 @@
![code](code.png)
-For example, consider the “hello world” program, a common first program
-for people learning C, which (when compiled and executed) prints “Hello
-World!” on the screen. [(1)](#FOOT1)
-
例如,“Hello World”这个程序,通常是人们学习 C 语言时的第一个程序,编译和执行后会在屏幕上打印出“Hello World”[^1]。
```C
@@ -24,10 +20,6 @@ int main(){
return 0;
}
```
-
-In the Java programming language the same program would be written like
-this:
-
在 Java 语言中,同样的程序会是这么写:
```Java
@@ -38,9 +30,6 @@ public class hello {
}
```
-However, in machine language, a small section of it may look similar to
-this:
-
然而用机器码表示,其中的一小部分可能会类似这样:
```