常量段

const部分声明其值为常量表达式的常量:

  1. import strutils
  2. const
  3. roundPi = 3.1415
  4. constEval = contains("abc", 'b') # computed at compile time!

声明后,常量符号可用作常量表达式。

详见 Constants and Constant Expressions