This extension provides syntax highlighting and language support for the Saika programming language, a Chinese programming language built on top of Go.
Features
Syntax highlighting for Saika (.saika) files
Recognition of Chinese keywords, types, and functions
Proper handling of comments, strings, and other language constructs
Installation
From VS Code Marketplace (Coming Soon)
Open VS Code
Go to the Extensions view (Ctrl+Shift+X)
Search for "Saika Language Support"
Click Install
Manual Installation
Download or clone this repository
Copy the language-saika folder to your VS Code extensions folder:
Windows: %USERPROFILE%\.vscode\extensions
macOS/Linux: ~/.vscode/extensions
Restart VS Code
Example
包 入口
导入 "格式化"
數 入口() {
格式化.打印行("你好,世界!")
}
Supported Keywords
This extension supports all Chinese keywords used in Saika, including:
Basic Structure
包 (package)
导入 (import)
數, 函数 (func)
返回 (return)
Data Types
整数 (int)
浮点数 (float64)
字符串 (string)
布尔 (bool)
真 (true)
假 (false)
空 (nil)
Control Flow
如果 (if)
否则 (else)
循环 (for)
范围 (range)
... and many more.
Development
This extension is still in early development. If you encounter any issues or have suggestions for improvements, please submit an issue or pull request on GitHub.