Skip to content

Commit 85d3e11

Browse files
committed
Fix CN not displayed on GitBook & fix unresolved links
1 parent e733dad commit 85d3e11

File tree

9 files changed

+74
-143
lines changed

9 files changed

+74
-143
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# V by Example
22

3-
[Brazilian Portuguese](/pt-br/README.md) | [Deutsch](/de/README.md) | [English](README.md) | [Bahasa Indonesia](/id/README.md) | [Chinese](cn/examples/README.md)
3+
[Brazilian Portuguese](pt-br/README.md) | [Deutsch](de/README.md) | [English](en/README.md) | [Bahasa Indonesia](id/README.md) | [Chinese](cn/README.md)
44
> Learn V by Examples
55
66
V by Example is a direct introduction to V by using annotated program examples.
File renamed without changes.

cn/README.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# V by Example
2+
3+
[Brazilian Portuguese](/pt-br/README.md) | [Deutsch](/de/README.md) | [English](/en/README.md) | [Bahasa Indonesia](/id/README.md) | [Chinese](README.md)
4+
5+
> Learn V by Examples
6+
7+
V by Example是使用带注释的程序示例对V语言的介绍。
8+
9+
- [例子](#examples)
10+
- [贡献](#contributing)
11+
- [版权](#license)
12+
13+
Discord: [https://discord.gg/d3Qk65J](https://discord.gg/d3Qk65J)
14+
15+
## Section 1
16+
17+
通过一些基本的例子和练习来介绍V语言。
18+
19+
- [Hello World](examples/section_1/hello_world.md)
20+
- [V Keywords](examples/section_1/keywords.md)
21+
- [Primitives](examples/section_1/primitives.md)
22+
- [Variables](examples/section_1/variables.md)
23+
- [Strings](examples/section_1/strings.md)
24+
- [Comment](examples/section_1/comment.md)
25+
26+
## Section 2
27+
28+
本节讨论V语言中主要的运算和条件语句。
29+
30+
- [Operator](examples/section_2/operator.md)
31+
- [If-else](examples/section_2/if-else.md)
32+
- [Match](examples/section_2/match.md)
33+
- [Loops](examples/section_2/loops.md)
34+
35+
## Section 3
36+
37+
学习V语言函数和方法以及最重要的数据结构:数组和结构体
38+
39+
- [Functions](examples/section_3/functions.md)
40+
- [Arrays](examples/section_3/arrays.md)
41+
- [Struct](examples/section_3/struct.md)
42+
- [Methods](examples/section_3/methods.md)
43+
44+
## Section 4
45+
46+
在本节中,我们将深入研究数组对象内部的特征。其他的例子,比如JSON、写/读文件和测试,都会涉及到。
47+
48+
- [Array Functions](examples/section_4/array-functions.md)
49+
- [Testing](examples/section_4/testing.md)
50+
- [Files](examples/section_4/files.md)
51+
- [JSON](examples/section_4/json.md)
52+
53+
## Team
54+
55+
当前维护者/作者列表:
56+
57+
- [Don Alfons Nisnoni](https://github.com/dhonx)
58+
- [Ivo-Balbaert](https://github.com/ibalbaert)
59+
- [Sven Patrick Meier](https://github.com/SuicideS3ason)
60+
- [Swastik Baranwal](https://github.com/Delta456)
61+
- [Vitor Oliveira](https://github.com/vbrazo)
62+
63+
## Contributing
64+
65+
先阅读 [CONTRIBUTING.md](CONTRIBUTING.md) 然后开始贡献. 我们通常根据贡献来选择新的维护者。
66+
67+
## License
68+
69+
[MIT](/LICENSE)

cn/examples/README.md

Lines changed: 1 addition & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1 @@
1-
# V by Example
2-
3-
[Brazilian Portuguese](pt-br/README.md) | [Deutsch](de/README.md) | [English](en/README.md) | [Chinese](cn/README.md)
4-
5-
> Learn V by Examples
6-
7-
V by Example是使用带注释的程序示例对V语言的介绍。
8-
9-
- [例子](#examples)
10-
- [贡献](#contributing)
11-
- [版权](#license)
12-
13-
Discord: [https://discord.gg/d3Qk65J](https://discord.gg/d3Qk65J)
14-
15-
## Section 1
16-
17-
通过一些基本的例子和练习来介绍V语言。
18-
19-
- [Hello World](section_1/hello_world.md)
20-
- [V Keywords](section_1/keywords.md)
21-
- [Primitives](section_1/primitives.md)
22-
- [Variables](section_1/variables.md)
23-
- [Strings](section_1/strings.md)
24-
- [Comment](section_1/comment.md)
25-
26-
## Section 2
27-
28-
本节讨论V语言中主要的运算和条件语句。
29-
30-
- [Operator](section_2/operator.md)
31-
- [If-else](section_2/if-else.md)
32-
- [Match](section_2/match.md)
33-
- [Loops](section_2/loops.md)
34-
35-
## Section 3
36-
37-
学习V语言函数和方法以及最重要的数据结构:数组和结构体
38-
39-
- [Functions](section_3/functions.md)
40-
- [Arrays](section_3/arrays.md)
41-
- [Struct](section_3/struct.md)
42-
- [Methods](section_3/methods.md)
43-
44-
## Section 4
45-
46-
在本节中,我们将深入研究数组对象内部的特征。其他的例子,比如JSON、写/读文件和测试,都会涉及到。
47-
48-
- [Array Functions](section_4/array-functions.md)
49-
- [Testing](section_4/testing.md)
50-
- [Files](section_4/files.md)
51-
- [JSON](section_4/json.md)
52-
53-
## Team
54-
55-
当前维护者/作者列表:
56-
57-
- [Don Alfons Nisnoni](https://github.com/dhonx)
58-
- [Ivo-Balbaert](https://github.com/ibalbaert)
59-
- [Sven Patrick Meier](https://github.com/SuicideS3ason)
60-
- [Swastik Baranwal](https://github.com/Delta456)
61-
- [Vitor Oliveira](https://github.com/vbrazo)
62-
63-
## Contributing
64-
65-
先阅读 [CONTRIBUTING.md](CONTRIBUTING.md) 然后开始贡献. 我们通常根据贡献来选择新的维护者。
66-
67-
## License
68-
69-
[MIT](LICENSE)
1+
# 例子

de/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# V mit einem Beispiel
22

3-
[Brazilian Portuguese](/pt-br/README.md) | [Deutsch](README.md) | [English](/README.md) | [Bahasa Indonesia](/id/README.md)
3+
[Brazilian Portuguese](/pt-br/README.md) | [Deutsch](README.md) | [English](/en/README.md) | [Bahasa Indonesia](/id/README.md) | [Chinese](/cn/README.md)
44

55
> Learn V by Examples
66

en/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

en/examples/README.md

Lines changed: 0 additions & 69 deletions
This file was deleted.

id/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# V dengan Contoh
22

3-
[Brazilian Portuguese](/pt-br/README.md) \| [Deutsch](/de/README.md) \| [English](/README.md) \| [Bahasa Indonesia](README.md)
3+
[Brazilian Portuguese](/pt-br/README.md) | [Deutsch](/de/README.md) | [English](/en/README.md) | [Bahasa Indonesia](README.md) | [Chinese](/cn/README.md)
44

55
> Belajar V dengan Contoh
66

pt-br/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# V por exemplos
22

3-
[Brazilian Portuguese](README.md) | [Deutsch](/de/README.md) | [English](/README.md) | [Bahasa Indonesia](/id/README.md)
3+
[Brazilian Portuguese](README.md) | [Deutsch](/de/README.md) | [English](/en/README.md) | [Bahasa Indonesia](/id/README.md) | [Chinese](/cn/README.md)
44

55
> Aprenda V por exemplos
66

0 commit comments

Comments
 (0)