Skip to content

Commit 19c7698

Browse files
committed
chore: change default language of README
1 parent 36e6495 commit 19c7698

File tree

4 files changed

+48
-43
lines changed

4 files changed

+48
-43
lines changed

README.md

+18-10
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,30 @@
11
# Nighta
22

3-
language: [中文](./README_CN.md) | [ENGLISH](.)
3+
语言: [中文](.) | [ENGLISH](./README_EN.md)
44

5-
`Nighta` is a lightweight scripting language, with its name signifying "something created overnight."
5+
<div style="text-align: center;">
6+
<img
7+
alt="Nighta"
8+
src="./doc/public/nighta.png"
9+
style="width: 240px; border-radius: 50%; overflow: hidden;"
10+
>
11+
</div>
612
7-
## Code Sample
13+
`Nighta` 是一款轻量级的脚本语言。其名字的寓意是“一夜之间产生的事物”。
14+
15+
## 代码示例
816

917
```nighta
1018
(var msg1 "Hello,")
1119
(var msg2 "World!")
12-
(say (+ msg1 msg2))
20+
(say (msg1 + msg2))
1321
```
1422

15-
## Quick Start
16-
- TODO: Coming Soon...
23+
## 快速开始
24+
现阶段,我们可以在 [Playground](https://coderserio.github.io/Nighta/#/playground/) 中使用 Nighta 进行编程。
1725

18-
## Documentation
19-
Our comprehensive official documentation is under active development and expansion.
26+
## 文档
27+
阅读 [文档](https://coderserio.github.io/Nighta/#/) 获取更多关于 Nighta 的细节!
2028

21-
## Contribution Guide
22-
Eager to contribute to Nighta's growth? It might not be the time just yet...
29+
## 贡献指南
30+
想要为Nighta的发展添砖加瓦?这或许还不到时候...

README_CN.md

-22
This file was deleted.

README_EN.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Nighta
2+
3+
language: [中文](./README.md) | [ENGLISH](.)
4+
5+
<div style="text-align: center;">
6+
<img
7+
alt="Nighta"
8+
src="./doc/public/nighta.png"
9+
style="width: 240px; border-radius: 50%; overflow: hidden;"
10+
>
11+
</div>
12+
13+
`Nighta` is a lightweight scripting language, with its name signifying "something created overnight."
14+
15+
## Code Sample
16+
17+
```nighta
18+
(var msg1 "Hello,")
19+
(var msg2 "World!")
20+
(say (msg1 + msg2))
21+
```
22+
23+
## Quick Start
24+
Currently, we can code with Nighta in the [Playground](https://coderserio.github.io/Nighta/#/playground/)
25+
26+
## Document
27+
Read [Document](https://coderserio.github.io/Nighta/#/) to learn about Nighta more!
28+
29+
## Contribution Guide
30+
Eager to contribute to Nighta's growth? It might not be the time just yet...

deploy.sh

-11
This file was deleted.

0 commit comments

Comments
 (0)