mirror of
https://github.com/nim-lang/Nim.git
synced 2026-03-01 06:08:29 +00:00
website slightly improved
This commit is contained in:
1
todo.txt
1
todo.txt
@@ -46,7 +46,6 @@ Bugs
|
||||
- VM: Pegs do not work at compile-time
|
||||
- VM: ptr/ref T cannot work in general
|
||||
- scopes are still broken for generic instantiation!
|
||||
- bug: type conversions concerning proc types are weird
|
||||
- compilation of niminst takes way too long. looks like a regression
|
||||
- docgen: sometimes effects are listed twice
|
||||
- blocks can "export" an identifier but the CCG generates {} for them ...
|
||||
|
||||
@@ -436,7 +436,7 @@ initConfigData(c)
|
||||
parseCmdLine(c)
|
||||
parseIniFile(c)
|
||||
when false:
|
||||
buildPdfDoc(c, "doc")
|
||||
#buildPdfDoc(c, "doc")
|
||||
buildWebsite(c)
|
||||
else:
|
||||
main(c)
|
||||
|
||||
@@ -136,7 +136,7 @@ p.greet() <span class="cmt"># or greet(p)</span>
|
||||
<h4>Documentation</h4>
|
||||
<a href="documentation.html">Stable Documentation</a>
|
||||
<!-- <a href="">Development Documentation</a> -->
|
||||
<a href="https://github.com/Araq/Nimrod">Github Issues & Requests</a>
|
||||
<a href="https://github.com/Araq/Nimrod">Issues & Requests</a>
|
||||
</div>
|
||||
<div>
|
||||
<h4>Community</h4>
|
||||
@@ -146,9 +146,9 @@ p.greet() <span class="cmt"># or greet(p)</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id="foot-legal">
|
||||
<h4>Written in Nim - Powered by <a href="#">Jester</a></h4>
|
||||
Web Design by <a href="#">Philip Witte</a> & <a href="#">Dominik Picheta</a><br>
|
||||
Copyright © 2014 - <a href="#">Andreas Rumpf</a> & <a href="#">Contributors</a>
|
||||
<h4>Written in Nim - Powered by <a href="https://github.com/dom96/jester">Jester</a></h4>
|
||||
Web Design by <a href="http://reign-studios.net/philipwitte/">Philip Witte</a> & <a href="http://picheta.me/">Dominik Picheta</a><br>
|
||||
Copyright © 2014 - <a href="http://nim-lang.org/blog/">Andreas Rumpf</a> & <a href="https://github.com/Araq/Nimrod/graphs/contributors">Contributors</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
@@ -373,8 +373,6 @@ We are pleased to announce that version 0.9.2 of the Nimrod compiler has been
|
||||
released. This release has attracted by far the most contributions in comparison
|
||||
to any other release.
|
||||
|
||||
This release can be downloaded from `here <download.html>`_.
|
||||
|
||||
This release brings with it many new features and bug fixes, a list of which
|
||||
can be seen later. One of the major new features is the effect system together
|
||||
with exception tracking which allows for checked exceptions and more,
|
||||
|
||||
@@ -19,7 +19,7 @@ docs: documentation
|
||||
learn: learn
|
||||
download: download
|
||||
forum: "http://forum.nim-lang.org"
|
||||
FAQ: question
|
||||
faq: question
|
||||
# these two are not in the list of "tabs", but do exist:
|
||||
community: community
|
||||
news: news
|
||||
|
||||
@@ -117,9 +117,9 @@ General
|
||||
-------------------------
|
||||
|
||||
*Procedure* used to be the common term as opposed to a *function* which is a
|
||||
mathematical entity that has no side effects. It was planned to have ``func``
|
||||
as syntactic sugar for ``proc {.noSideEffect.}`` but with the more fine-grained
|
||||
effect system it is not yet clear what ``func`` should be a shortcut for.
|
||||
mathematical entity that has no side effects. It is planned to have ``func``
|
||||
as syntactic sugar for ``proc {.noSideEffect.}`` and ``func`` is already a
|
||||
keyword.
|
||||
|
||||
|
||||
Compilation
|
||||
|
||||
Reference in New Issue
Block a user