blob: ac8a274f425047c7f0383082d65a01ab7ae2cb41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Tests for Nim
let s = "foobar"
# Feature #1260
{.ident.}
stdin.readLine.split.map(parseInt).max.`$`.echo(" is the maximum!")
# Feature #1261
# IsFuncName("proc") so style ticks as SCE_NIM_FUNCNAME:
proc `$` (x: myDataType): string = ...
# Style ticks as SCE_NIM_BACKTICKS:
if `==`( `+`(3,4),7): echo "True"
# Feature #1262
# Standard raw string identifier:
let standardDoubleLitRawStr = R"A raw string\"
let standardTripleLitRawStr = R"""A triple-double raw string\""""
# Style of 'customIdent' is determined by lexer.nim.raw.strings.highlight.ident. 16 if false, 6 or 10 if true
let customDoubleLitRawStr = customIdent"A string\"
let customTripleLitRawStr = customIdent"""A triple-double raw string\""""
|