书栈网 · BookStack 本次搜索耗时 0.014 秒,为您找到 650 个相关结果.
  • uri

    Basic usage Combine URIs Access URI item Data URI Base64 Imports Types Procs Iterators Source Edit This module implements URI parsing as specified by RFC 3986. A U...
  • ropes

    Imports Types Procs Iterators Source Edit This module contains support for a rope data type. Ropes can represent very long strings efficiently; in particular, concatena...
  • 关于手册

    关于手册 关于手册 注意 : 当前手册还是草案! Nim的一些功能需要更加准确的描述。手册内容也在不断更新,使其逐渐成为规范。 注意 : Nim的实验性功能在这里 。 注意 : 赋值、移动和析构在文档特定的析构 部分。 当前手册对 Nim 语言的词法、语法和语义做了描述。 打算学习怎样编译 Nim 程序和生成文档,请阅读用户编译指南 和文档生...
  • 第一个程序

    第一个程序 第一个程序 我们从一个调整过的"hello world"程序开始: # 这是注释 echo "What's your name? " var name : string = readLine ( stdin ) echo "Hi, " , name , "!" 保存到文件"greetings.nim"...
  • compile-time define pragmas

    113 2024-07-11 《Nim v2.0 Manual》
    compile-time define pragmas compile-time define pragmas The pragmas listed here can be used to optionally accept values from the -d/—define option at compile time. The impleme...
  • Emit pragma

    110 2024-07-11 《Nim v2.0 Manual》
    Emit pragma Emit pragma The emit pragma can be used to directly affect the output of the compiler’s code generator. The code is then unportable to other code generators/backend...
  • 从目录中集体导入

    从目录中集体导入 从目录中集体导入 语法 import dir / [moduleA, moduleB] 可用于从同一目录导入多个模块。 路径名在语法上是Nim标识符或字符串文字。如果路径名不是有效的Nim标识符,则它必须是字符串文字: import "gfx/3d/somemodule" # 在引号中因为'3d'不是有效的Nim标识符...
  • Definitions

    559 2020-10-18 《Nim v1.4 Manual》
    Definitions Definitions Nim code specifies a computation that acts on a memory consisting of components called locations. A variable is basically a name for a location. Each v...
  • Emit 编译指示

    Emit 编译指示 Emit 编译指示 emit 编译指示可以直接影响编译器代码生成器的输出。这样一来,代码将无法移植到其他代码生成器/后端,非常不鼓励使用这种方法。然而,它对于实现与 C++ 或 Objective C 代码的接口非常有用。 示例: {. emit : """ static int cvariable = 420; ...
  • 定义

    1477 2020-04-25 《Nim 1.2 语言手册》
    定义 定义 Nim代码指定一个计算,该计算作用于由称为 位置 的组件组成的内存。 变量基本上是位置的名称。每个变量和位置都是某种 类型 。 变量类型叫做 静态类型 ,位置的类型叫做 动态类型 。 如果静态类型和动态类型不一样,它是动态类型的一个超类型或子类型。 标识符 是声明为变量,类型,过程等的名称的符号。 声明适用的程序区域叫做 作用域 ...