summary refs log tree commit diff stats
path: root/tests/modules/texport2.nim
Commit message (Expand)AuthorAgeFilesLines
* make run the default action of a test in testerArne Döring2018-11-231-1/+8
* fixes #1612Araq2014-11-061-1/+2
* updated the testAraq2014-10-311-0/+10
ef='/ahoang/Nim/commit/tests/system/toString.nim?h=devel&id=371470e73f2c79f4d9babc86f59b5d580defb050'>371470e73 ^
f6e8da433 ^


b6e4a5229 ^
62e454f41 ^

371470e73 ^




















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
           
                     












             


                  
                            

                            




















                                    
discard """
  output:'''@[23, 45]
@[, foo, bar]
{a, b, c}
2.3242
2.982
123912.1
123912.1823
5.0
1e+100
inf
-inf
nan
nil
nil'''
"""

echo($(@[23, 45]))
echo($(@["", "foo", "bar"]))
#echo($(["", "foo", "bar"]))
#echo($([23, 45]))

# bug #2395

let alphaSet: set[char] = {'a'..'c'}
echo alphaSet

echo($(2.3242))
echo($(2.982))
echo($(123912.1))
echo($(123912.1823))
echo($(5.0))
echo($(1e100))
echo($(1e1000000))
echo($(-1e1000000))
echo($(0.0/0.0))

# nil tests
var x: seq[string]
var y: string
echo(x)
echo(y)