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

    95 2024-07-11 《Nim v2.0 Manual》
    Debug example Debug example The following example implements a powerful debug command that accepts a variable number of arguments: # to work with Nim syntax trees, we need an ...
  • 类型

    类型 类型 所有表达式都具有在语义分析期间已知的类型。 Nim是静态类型的。可以声明新类型,这实际上定义了可用于表示此自定义类型的标识符。 这些是主要的类型: 序数类型(由整数,bool,字符,枚举(及其子范围)类型组成) 浮点类型 字符串类型 结构化类型 引用 (指针)类型 过程类型 泛型类型 序数类型 预定义整数类型 子范围类型...
  • Passing a code block to a template

    132 2024-07-11 《Nim v2.0 Manual》
    Passing a code block to a template Passing a code block to a template One can pass a block of statements as the last argument to a template following the special : syntax: tem...
  • Passing a code block to a template

    766 2020-10-18 《Nim v1.4 Manual》
    Passing a code block to a template Passing a code block to a template One can pass a block of statements as the last argument to a template following the special : syntax: te...
  • linearScanEnd 编译指示

    linearScanEnd 编译指示 linearScanEnd 编译指示 linearScanEnd 编译指示可以用来告诉编译器如何编译Nim case 语句。 从语法上讲,它必须用作语句: case myInt of 0 : echo "most common case" of 1 : {. linearScanEn...
  • linearScanEnd 编译指示

    linearScanEnd 编译指示 linearScanEnd 编译指示 linearScanEnd 编译指示可以用来告诉编译器如何编译Nim case 语句。 从语法上讲,它必须用作语句: case myInt of 0 : echo "most common case" of 1 : {. linearScanEn...
  • 标识符 & 关键字

    标识符 & 关键字 标识符 & 关键字 Nim中的标识符可以是任何以字母开头的数字、字母和下划线。不允许两个连续的下划线 __ : letter ::= 'A' .. 'Z' | 'a' .. 'z' | '\x80' .. '\xff' digit ::= '0' .. '9' IDENTIFIER ::= ...
  • browsers

    Imports Consts Procs Source Edit This module implements a simple proc for opening URLs with the user’s default browser. Unstable API. Imports since , strutils , winl...
  • Type equality

    443 2020-10-18 《Nim v1.4 Manual》
    Type equality Type equality Nim uses structural type equivalence for most types. Only for objects, enumerations and distinct types name equivalence is used. The following algo...
  • Importc 编译指示

    Importc 编译指示 Importc 编译指示 importc 编译指示提供了一种从 C 语言导入程序或变量的方法。可选参数是一个包含 C 标识符的字符串。如果没有这个参数,C 名称就和 Nim 的标识符 一字不差: proc printf ( formatstr : cstring ) {. header : "<stdio.h>"...