Nim是一個新型的靜態類型、命令式程式語言,支持過程式、函式式、面向對象和泛型編程風格而保持簡單和高效。Nim從Lisp繼承來的一個特殊特性--抽象語法樹(AST)作為語言規範的一部分,可以用作創建領域特定語言的強大宏系統。
基本介紹
- 中文名:nim語言
- 外文名:nim
語言簡介
代碼示例
import strutils echo "Type in a list of ints of ints (separate by whitespace): "let tokens = stdin.readLine.splitecho tokens.each(parseInt).max, " is the maximum."