daily notes[46]
Cangjie是一种通用编程语言,支持全场景应用需求。其特点包括:多后端支持、高效语法、多范式编码、类型与内存安全、高效并发、语言生态兼容、领域易扩展、便捷UI开发以及丰富的内置库函数。该语言旨在提供全面的开发
·
文章目录
cangjie notes
- the cangjie programming language was designed as a general-purpose language,which can deal with full-scenario application requirement.it possesses various features , including support for multiple backends,an efficient grammer,mutli-paradigm coding,type and memory safety,efficient concurrency,compatibilty with language ecosystems,ease of expansion in the domain,convenient UI development and abundant buit-in library functions.
- The Cangjie compiler is responsible for compiling the Cangjie source code into binary executable files. Furthermore, the compiler provides a set of toolchains including a compiler, debugger, package manager, static check tools, formatter, coverage statistics, and so on.
- If you use the Cangjie toolchain on Windows, you should create or modify the CANGJIE_HOME system environment variable to point to the directory where your installer package is unzipped. Additionally, update the Path system environment variable to include the following directories:
%CANGJIE_HOME%\bin
%CANGJIE_HOME%\tools\bin
%CANGJIE_HOME%\tools\lib
%CANGJIE_HOME%\runtime\lib\windows_x86_64_llvm
- hello,world.
the hello,world program can be constructed as follows.
//my first program
main() {
println("你好,世界")
}
references
更多推荐
所有评论(0)