About this document About this document Note : This document is a draft! Several of Nim’s features may need more precise wording. This manual is constantly evolving into a prop...
定义 定义 Nim 代码是特定的计算单元,作用于称为 locations “地址”组件构成的内存。 变量本质上是地址的名称,每个变量和地址都有特定的 type “类型”,变量的类型被称为 static type “静态类型”, 地址的类型被称为 dynamic type “动态类型”。如果静态类型与动态类型不相同,它就是动态类型的父类或子类。 id...
cstring type cstring type The cstring type meaning compatible string is the native representation of a string for the compilation backend. For the C backend the cstring type r...