summary refs log tree commit diff stats
path: root/web/news.txt
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-01-16 08:42:30 +0100
committerAraq <rumpf_a@web.de>2013-01-16 08:42:30 +0100
commitc43697b59a08459fdfe41129b9ed0f96cf0150fa (patch)
tree8c1a9c2e3f4f915791922e45fcbaede72aa9c0b3 /web/news.txt
parentc9690864d4cf9945cb5eb9497f7621e56f9bebd0 (diff)
downloadNim-c43697b59a08459fdfe41129b9ed0f96cf0150fa.tar.gz
implemented generic multi methods
Diffstat (limited to 'web/news.txt')
-rwxr-xr-xweb/news.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/web/news.txt b/web/news.txt
index 824e0c3a3..e4e9108e0 100755
--- a/web/news.txt
+++ b/web/news.txt
@@ -57,6 +57,7 @@ Language Additions
   symbol forwarding so client modules don't have to import a module's 
   dependencies explicitly.
 - Overloading based on ASTs has been implemented.
+- Generics are now supported for multi methods.
 
 
 2012-09-23 Version 0.9.0 released
eyor.yml?h=devel&id=dafd9954027b97d3330286901d1dd8a596cc9026'>dafd99540 ^
dee9a9427 ^
8b39551fc ^

08fdffc71 ^
8b39551fc ^
9f6f78ac6 ^

c93655e8b ^
08fdffc71 ^

9f6f78ac6 ^
05fe52383 ^
96c571dd9 ^
9f6f78ac6 ^

08fdffc71 ^
9f6f78ac6 ^


5b8544424 ^

9f6f78ac6 ^
c60916a2a ^
9f6f78ac6 ^

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

                  
            

                                                  
                    

                                                     
 
         
                              
                             
 

                       
                      
 

        
                                                                                   

                                                                                               
                                                                                                  
                                                
                                                      

                                                            
               


             

                      
                  
              

           
version: '{build}'

environment:
  DLLS_URL: https://nim-lang.org/download/dlls.zip
  DLLS_ARCHIVE: dlls.zip
  MINGW_DIR: mingw64
  MINGW_URL: https://nim-lang.org/download/mingw64.7z
  MINGW_ARCHIVE: mingw64.7z

  matrix:
    - NIM_TEST_PACKAGES: false
    - NIM_TEST_PACKAGES: true

cache:
    - '%MINGW_ARCHIVE%'
    - '%DLLS_ARCHIVE%'


install:
  - ps: Install-Product node 8 # node 8 or later is required to test js async stuff
  - IF not exist "%DLLS_ARCHIVE%" appveyor DownloadFile "%DLLS_URL%" -FileName "%DLLS_ARCHIVE%"
  - 7z x -y "%DLLS_ARCHIVE%" -o"%CD%\BIN"> nul
  - IF not exist "%MINGW_ARCHIVE%" appveyor DownloadFile "%MINGW_URL%" -FileName "%MINGW_ARCHIVE%"
  - 7z x -y "%MINGW_ARCHIVE%" -o"%CD%\DIST"> nul
  - SET PATH=%CD%\DIST\%MINGW_DIR%\BIN;%CD%\BIN;%PATH%
  - git clone --depth 1 https://github.com/nim-lang/csources
  - cd csources
  - build64.bat
  - cd ..

build_script:
  - openssl version
  - openssl version -d
  - bin\nim c koch
  - koch runCI

deploy: off