-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: change default language of README
- Loading branch information
1 parent
36e6495
commit e2b2bb2
Showing
4 changed files
with
46 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,29 @@ | ||
# Nighta | ||
|
||
language: [中文](./README_CN.md) | [ENGLISH](.) | ||
语言: [中文](.) | [ENGLISH](./README_EN.md) | ||
|
||
`Nighta` is a lightweight scripting language, with its name signifying "something created overnight." | ||
<div style="text-align: center;"> | ||
<img | ||
alt="Nighta" | ||
src="./doc/public/nighta.png" | ||
> | ||
</div> | ||
## Code Sample | ||
`Nighta` 是一款轻量级的脚本语言。其名字的寓意是“一夜之间产生的事物”。 | ||
|
||
## 代码示例 | ||
|
||
```nighta | ||
(var msg1 "Hello,") | ||
(var msg2 "World!") | ||
(say (+ msg1 msg2)) | ||
(say (msg1 + msg2)) | ||
``` | ||
|
||
## Quick Start | ||
- TODO: Coming Soon... | ||
## 快速开始 | ||
现阶段,我们可以在 [Playground](https://coderserio.github.io/Nighta/#/playground/) 中使用 Nighta 进行编程。 | ||
|
||
## Documentation | ||
Our comprehensive official documentation is under active development and expansion. | ||
## 文档 | ||
阅读 [文档](https://coderserio.github.io/Nighta/#/) 获取更多关于 Nighta 的细节! | ||
|
||
## Contribution Guide | ||
Eager to contribute to Nighta's growth? It might not be the time just yet... | ||
## 贡献指南 | ||
想要为Nighta的发展添砖加瓦?这或许还不到时候... |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Nighta | ||
|
||
language: [中文](./README.md) | [ENGLISH](.) | ||
|
||
<div style="text-align: center;"> | ||
<img | ||
alt="Nighta" | ||
src="./doc/public/nighta.png" | ||
> | ||
</div> | ||
`Nighta` is a lightweight scripting language, with its name signifying "something created overnight." | ||
|
||
## Code Sample | ||
|
||
```nighta | ||
(var msg1 "Hello,") | ||
(var msg2 "World!") | ||
(say (msg1 + msg2)) | ||
``` | ||
|
||
## Quick Start | ||
Currently, we can code with Nighta in the [Playground](https://coderserio.github.io/Nighta/#/playground/) | ||
|
||
## Document | ||
Read [Document](https://coderserio.github.io/Nighta/#/) to learn about Nighta more! | ||
|
||
## Contribution Guide | ||
Eager to contribute to Nighta's growth? It might not be the time just yet... |