summary refs log tree commit diff stats
path: root/lib/pure/future.nim
Commit message (Expand)AuthorAgeFilesLines
* Added a dump macro for debuggingAndrea Ferretti2016-09-221-0/+21
* stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-3/+3
* fixes #4238Andreas Rumpf2016-05-301-6/+2
* nimrod -> nimErik Johansson Andersson2016-02-051-1/+1
* fixing TypelessParam warning in x=>x+1, added testPeter Mora2015-09-221-2/+2
* Rename PNimrodNode to NimNodedef2015-03-171-5/+5
* Remove unnecessary check in list comprehensionsdef2015-01-101-1/+0
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* allow () in more contextsAraq2014-12-191-0/+10
* Merge branch 'devel' into bigbreakAraq2014-11-031-0/+57
|\
| * Extend list comprehension documentationdef2014-08-031-16/+20
| * Add list comprehensions to future moduledef2014-08-031-0/+53
* | Nimrod renamed to NimAraq2014-08-281-2/+2
* | big renameAraq2014-08-271-1/+1
|/
* `=>` macro tripped on generic return typesBillingsly Wetherfordshire2014-05-191-1/+0
* doc2 likes future.nim nowAraq2014-04-211-1/+1
* Fixed docs in future module.Dominik Picheta2014-04-201-2/+2
* Param name and type combos now work in type sig. sugar.Dominik Picheta2014-04-201-2/+9
* Remove echo from => macro and fix tclosuremacro test.Dominik Picheta2014-04-201-2/+2
* Added new future module with a closure macro.Dominik Picheta2014-04-201-0/+111
ini?h=devel&id=53cd61546dc798fc0f08baf0813f579a90d7e766'>^
ddaedab83 ^
765366c1f ^
ddaedab83 ^
eca05d2a3 ^
765366c1f ^

eca05d2a3 ^
765366c1f ^

eca05d2a3 ^
ddaedab83 ^


2169fd63b ^
ddaedab83 ^








4d4b3b1c0 ^


0117f494e ^
ddaedab83 ^
4d4b3b1c0 ^
c9d5c8268 ^
4d4b3b1c0 ^







4d4b3b1c0 ^




7bf98411b ^











eca05d2a3 ^
4d4b3b1c0 ^


ddaedab83 ^
4d4b3b1c0 ^
ddaedab83 ^




7bf98411b ^


ddaedab83 ^
e792940f5 ^





ddaedab83 ^

765366c1f ^

becd46f61 ^
90119066a ^
e792940f5 ^
033c28f11 ^
765366c1f ^
4d4b3b1c0 ^
ddaedab83 ^
4d4b3b1c0 ^

ddaedab83 ^
4d4b3b1c0 ^


ddaedab83 ^

becd46f61 ^
ddaedab83 ^




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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139


                   
                                 
                                                         
                                     















                                                                              
        
                          
                          
                              




                   
                  
                          
 
       
                                                
                           
                 
              
                 
 
                         

                         
                       

                       
 


                       
                  








                        


                                  
                  
 
                         
                       







                                  




                                      











                                         
 


                          
 
       




                     


                                   
 





                        

                       

                        
                   
                 
                   
                  
                                   
                
 

                   
 


                      

           
                                            




            
[Project]
Name: "Nimrod"
Version: "$version"
; Windows and i386 must be first!
OS: "windows;linux;macosx;freebsd;netbsd;openbsd;solaris"
CPU: "i386;amd64;powerpc64"  # ;sparc
Authors: "Andreas Rumpf"
Description: """This is the Nimrod Compiler. Nimrod is a new statically typed,
imperative programming language, that supports procedural, functional, object
oriented and generic programming styles while remaining simple and efficient.
A special feature that Nimrod inherited from Lisp is that Nimrod's abstract
syntax tree (AST) is part of the specification - this allows a powerful macro
system which can be used to create domain specific languages.

Nimrod is a compiled, garbage-collected systems programming language
which has an excellent productivity/performance ratio. Nimrod's design
focuses on the 3E: efficiency, expressiveness, elegance (in the order of
priority)."""

App: Console
License: "copying.txt"

[Config]
Files: "config/nimrod.cfg"
Files: "config/nimdoc.cfg"
Files: "config/nimdoc.tex.cfg"

[Documentation]
Files: "doc/*.txt"
Files: "doc/*.html"
Files: "doc/*.cfg"
Files: "doc/*.pdf"
Start: "doc/overview.html"

[Other]
Files: "readme.txt;install.txt;contributors.txt"
Files: "configure;makefile"
Files: "gpl.html"
Files: "*.ini"
Files: "koch.nim"

Files: "icons/nimrod.ico"
Files: "icons/nimrod.rc"
Files: "icons/nimrod.res"
Files: "icons/koch.ico"
Files: "icons/koch.rc"
Files: "icons/koch.res"

Files: "rod/readme.txt"
Files: "rod/nimrod.ini"
Files: "rod/nimrod.cfg"
Files: "rod/*.nim"
Files: "build/empty.txt"
Files: "bin/empty.txt"
Files: "nim/*.*"

Files: "data/*.yml"
Files: "data/*.txt"
Files: "obj/*.txt"
Files: "diff/*.txt"

[Lib]
Files: "lib/nimbase.h;lib/cycle.h"
Files: "lib/*.nim"
Files: "lib/*.cfg"

Files: "lib/system/*.nim"
Files: "lib/core/*.nim"
Files: "lib/pure/*.nim"
Files: "lib/impure/*.nim"
Files: "lib/wrappers/*.nim"

Files: "lib/wrappers/cairo/*.nim"
Files: "lib/wrappers/gtk/*.nim"
Files: "lib/wrappers/lua/*.nim"
Files: "lib/wrappers/opengl/*.nim"
Files: "lib/wrappers/sdl/*.nim"
Files: "lib/wrappers/x11/*.nim"
Files: "lib/wrappers/zip/*.nim"
Files: "lib/wrappers/zip/libzip_all.c"

Files: "lib/oldwrappers/*.nim"

Files: "lib/oldwrappers/cairo/*.nim"
Files: "lib/oldwrappers/gtk/*.nim"
Files: "lib/oldwrappers/lua/*.nim"
Files: "lib/oldwrappers/opengl/*.nim"
Files: "lib/oldwrappers/pcre/*.nim"
Files: "lib/oldwrappers/pcre/pcre_all.c"
Files: "lib/oldwrappers/sdl/*.nim"
Files: "lib/oldwrappers/x11/*.nim"
Files: "lib/oldwrappers/zip/*.nim"
Files: "lib/oldwrappers/zip/libzip_all.c"

Files: "lib/windows/*.nim"
Files: "lib/posix/*.nim"
Files: "lib/ecmas/*.nim"

[Other]
Files: "tests/*.nim"
Files: "tests/*.html"
Files: "tests/*.txt"
Files: "tests/*.cfg"
Files: "tests/*.tmpl"
Files: "tests/accept/run/*.nim"
Files: "tests/accept/compile/*.nim"
Files: "tests/reject/*.nim"

Files: "examples/*.nim"
Files: "examples/*.html"
Files: "examples/*.txt"
Files: "examples/*.cfg"
Files: "examples/*.tmpl"

[Windows]
Files: "bin/nimrod.exe"
Files: "bin/c2nim.exe"
Files: "bin/niminst.exe"
Files: "deps/*.dll"
Files: "koch.exe"
Files: "dist/mingw"
Files: "start.bat"
BinPath: r"bin;dist\mingw\bin;deps"
InnoSetup: "Yes"

[UnixBin]
Files: "bin/nimrod"

[Unix]
InstallScript: "yes"
UninstallScript: "yes"

[InnoSetup]
path = r"c:\programme\inno setup 5\iscc.exe"
flags = "/Q"

[C_Compiler]
path = r""
flags = "-w"