Chanyon
Chanyon
**Describe the bug** When I use Chinese font, the font size is displayed inconsistently.Whether to consider adding a custom font setting feature. **Screenshots**  **Desktop (please complete the following information):**...
``` string S = "abcdefx"; string T = "def"; int myIndex(string S,string T,int pos) { int i = pos; int j = 0; byte[] s = toByteArray(S); byte[] t =...
```zig // The naturelang code is a modified version of the original Odin code from // https://github.com/odin-lang/Odin/blob/m_aster/core/unicode/utf8/utf8.odin // 0000_0000 0000_0000 0000_0000 0000_0000 var RUNE_ERROR = 0xefbfbd as u32 var RUNE_SELF...
example: ``` arr a = [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ] // 允许最后一个`,`存在 ```
- 其中的 builtin_temp.n 进行了全局 import, 所以不需要进行 import 也可以访问其中的符号,入 errort/println/print 等都定义在该 temp 中 - 这里有几个特殊的地方,首先为什么我们不需要通过 libc_temp.sleep() 的方式访问 sleep 呢?在 c 语言中其实没有作用域的概念,所有的符号都是全局符号,所以继承到 anture ->nature 中 (https://nature-lang.org/zh-Hans/docs/digging-deeper/temp)
## vscode syntax highlight plugin github: https://github.com/Chanyon/vscode-nature (参考vscode-vlang) 
[TODO] 待完善功能
### TODO - [x] add setting page (#16) - [ ] 完善`模式二`翻译逻辑 - [x] local save key (key.json) (https://github.com/fzdwx/popup-translation/commit/c2b7e3e6fc33a613fdee80d88a7116f8a6fc501a) - [x] get local key (https://github.com/fzdwx/popup-translation/commit/c2b7e3e6fc33a613fdee80d88a7116f8a6fc501a) - [x] 组件优化 (#18) -...
编译步骤类似xmake.lua 1)编译 lib/ 目录下每个子lib 得到(static libary) 2)编译LCUI得到最终的静态库(依赖子库顺序与xmake.lua一致) 3)编译example/hello demo `C:\Users\dcyno\.zig\0.12.0\zig.exe build-exe D:\Dev-cpp\Project\lcui-quick-start\vendor\LCUI\examples\hello\src/main.c -llcui -ODebug -I D:\Dev-cpp\Project\lcui-quick-start\vendor\LCUI\include -L D:\Dev-cpp\Project\lcui-quick-start\vendor\LCUI\zig-out\lib -Mroot -lc` --- build.zig 代码:  4)报错:  --- **请问一下这个`error:...