summary refs log tree commit diff stats
path: root/tests/overload/toverl2.nim
Commit message (Expand)AuthorAgeFilesLines
* new tester; all tests categorizedAraq2014-01-131-0/+33
as Rumpf <andreas@andreas-desktop> 2009-12-16 00:38:35 +0100 exprs for dynlib; indentation parsing' href='/ahoang/Nim/commit/tests/tindent1.nim?h=devel&id=10ab814fbae0a54151028efd42ee9f806cc6bacd'>10ab814fb ^
422327c01 ^














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: '''Success'''
"""

const romanNumbers1 =
    [
    ("M", 1000), ("D", 500), ("C", 100),
    ("L", 50), ("X", 10), ("V", 5), ("I", 1) ]

const romanNumbers2 =
    [
    ("M", 1000), ("D", 500), ("C", 100),
    ("L", 50), ("X", 10), ("V", 5), ("I", 1)
    ]

const romanNumbers3 =
  [
    ("M", 1000), ("D", 500), ("C", 100),
    ("L", 50), ("X", 10), ("V", 5), ("I", 1)
  ]

const romanNumbers4 = [
    ("M", 1000), ("D", 500), ("C", 100),
    ("L", 50), ("X", 10), ("V", 5), ("I", 1)
    ]


proc main =
  var j = 0
  while j < 10:
    inc(j);

  if j == 5: doAssert false

var j = 0
while j < 10:
  inc(j);

if j == 5: doAssert false

main()
echo "Success"