summary refs log tree commit diff stats
path: root/examples/cross_calculator/nim_backend
diff options
context:
space:
mode:
authorAdam Strzelecki <ono@java.pl>2015-09-04 23:05:22 +0200
committerAdam Strzelecki <ono@java.pl>2015-09-04 23:05:22 +0200
commit5d80548cce84ea62dc8b85c10375f70d037ea4f8 (patch)
tree110db6acbe7cf57031571cbd5f3519bb3ee0a039 /examples/cross_calculator/nim_backend
parente80465dacf50f260abec30ae57d37b298c93fd83 (diff)
downloadNim-5d80548cce84ea62dc8b85c10375f70d037ea4f8.tar.gz
examples: Trim .nim files trailing whitespace
via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
Diffstat (limited to 'examples/cross_calculator/nim_backend')
-rw-r--r--examples/cross_calculator/nim_backend/backend.nim10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/cross_calculator/nim_backend/backend.nim b/examples/cross_calculator/nim_backend/backend.nim
index ffa4311f9..c8684581c 100644
--- a/examples/cross_calculator/nim_backend/backend.nim
+++ b/examples/cross_calculator/nim_backend/backend.nim
@@ -1,5 +1,5 @@
-# Backend for the different user interfaces.

-

-proc myAdd*(x, y: int): int {.cdecl, exportc.} = 

-  result = x + y

-

+# Backend for the different user interfaces.
+
+proc myAdd*(x, y: int): int {.cdecl, exportc.} =
+  result = x + y
+
LEN into MAXTAGLEN (backward compliance)' href='/acidbong/suckless/dwm/commit/config.def.h?h=5.7.2&id=295ad21092ce26062c79463b7f2ba5849d2fb823'>295ad21 ^
00ca643 ^
fe2775a ^
e237b2a ^




f196b71 ^
3794c62 ^
f196b71 ^
6f60b2e ^
8d1810c ^
39af3c2 ^
fe2775a ^
c917018 ^
247ba66 ^

d7b074f ^

3794c62 ^

f196b71 ^

e9a0733 ^

dba2284 ^
33b1960 ^
e9a0733 ^
308f95a ^
e9a0733 ^
e9a0733 ^

d66ad14 ^
e9a0733 ^

2e95837 ^

d7b074f ^

e9a0733 ^








































b515765 ^
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108