An in development statically typed systems programming language; with sustainability at its core. We, the community of users, maintain it.
See the code
The Nimskull compiler, stdlib, tools, and documentation repository.
Code of Conduct
·
Code of Ethics
·
Documentation
This repository contains the Nimskull compiler, stdlib, tools, and documentation.
Nimskull (temporary name) is a statically typed structured programming language to create software (itself included) that is sustainable, it aims to be:
The project was started as a fork of Nim as it provides a bootstrapped compiler as a starting point. The overall language will be evolved into something entirely different and incompatible.
We are currently working on the first phase of this, by slimming down the language and compiler to a workable core and increasing compiler development productivity. The following phase will starting with one of the following possible features:

For updates on the progress refer to the milestones. The current ones are used as a way to track progress on a topic, rather than for representing fixed milestones. The old, out-of-date thread about roadmap progress can be found here.
The current and key areas of development are as follows:
slim the core below).
Reorganize existing tests. (Project)localError etc approach with an AST
(nkError) one (Project)There are more, the above have been carefully chosen based on the direction of the language; moreover, their impact goes beyond what's been described and intends to create a virtuous cycle. Examples:
func) as control-
flow and effects are no longer intertwined; lead to bug and language
design fixes due to a broad audit, ease compiler as a library usage for toolsCurrently, this repository and our matrix/irc are our primary community hubs; we'll introduce more as things grow. At this time our community is small but passionate We welcome any who are able and eager to collaborate on improving the compiler and associated tools.
Check the FAQ, or Project Board for an idea of where to help.
There's plenty to be done, and we appreciate even the smallest contribution to documentation! We look forward to seeing introductions and pull requests!
The compiler currently aims to support the following platform and architecture combinations:
Other platforms may work but aren't regularly tested.
Compiling the compiler is quite straightforward if you follow these steps:
To build from source you will need:
gcc 3.x/later or an alternative such as clang,
Visual C++ or Intel C++. It is recommended to use gcc 3.x or
later.git or wget to download the needed source repositories.build-essential package when using gcc on Ubuntu (and likely
other distros as well).Windows Note: Cygwin and similar POSIX runtime environments are not supported.
Then, if you are on a *nix system or Windows, the following steps should compile
Nimskull from source using gcc, git, and the koch build tool.
git clone https://github.com/nim-works/nimskull.git
cd nimskull
./koch.py boot -d:release
./koch.py tools -d:release
Finally, once you have finished the build steps (on Windows, Mac, or Linux) you
should add the bin directory to your PATH.
Contributing is simplified thanks to our contribution guide. Right now, the easiest and most important contribution is test suite improvement, also described in the guide.
koch is the build tool used to build various parts of Nim and to generate
documentation, among other things. The koch tool can also
be used to run the Nim test suite.
You may execute the tests using ./koch.py tests. The tests take a while to
run, but you can run a subset of tests by specifying a category (for example
./koch.py tests cat lang).
For more information on the koch build tool please see the documentation
within the doc/koch.rst file.
A language (community, compiler, etc) that is sustained through the collective efforts of its practitioners and their diverse backgrounds.
Attracting practitioners with diversity of experience and perspectives requires a language with broad applicability, from Web to Systems Programming all the while remaining efficient.
Onboarding practitioners requires a language that is familiar enough to get started in terms of syntax and initial concepts such as structured and modular programming.
Supporting practitioner-driven innovation requires a language that allows for experimentation without necessarily being an expert in all aspects of language development. Compile time facilities integrated into the language, such as compile time evaluation and a macro system provide an extension sandbox.
Practitioner collaborating and combining their software is assisted by a static type system that supports local inference, tuples, sum, and generic types, along with effect analysis.
A language that develops in such a manner is going to encounter what some might term as 'instability' via numerous backwards incompatible changes. We consider this a feature, instead we:
Popular languages are maintained through incredible amounts of funding from various entities; we do not see, nor seek, this happening for us. Alternatively, there are a number of languages that require unhealthy amounts of free labour from a few, we're not interested in that either. Instead as is described this language will focus on practitioners able to affect their tools and community.
It's convenient. Creating a compiler from scratch is labour intensive and the existing contributors are already familiar with the current code base. We chose to evolve it.
This project aims to become a different programming language, if you want Nim go use that.
There is lots to do, and we're very interested in people contributing to the compiler. First step is getting a development environment setup, then join the matrix chat and introduce yourself. It's a small community so time zones might not align, so please be patient.
We're presently reworking much of the compiler, removing dialects and half-baked features to end up with a slim down core. Some areas of contribution:
Yes! Feel free to join us on our nim-works channel or nim.works discord server! Please have a read of our Code of Conduct.
MIT
(top 30 of 328)
Nim
97.6%
HTML
1.2%
An in development statically typed systems programming language; with sustainability at its core. We, the community of users, maintain it.
See the code
The Nimskull compiler, stdlib, tools, and documentation repository.
Code of Conduct
·
Code of Ethics
·
Documentation
This repository contains the Nimskull compiler, stdlib, tools, and documentation.
Nimskull (temporary name) is a statically typed structured programming language to create software (itself included) that is sustainable, it aims to be:
The project was started as a fork of Nim as it provides a bootstrapped compiler as a starting point. The overall language will be evolved into something entirely different and incompatible.
We are currently working on the first phase of this, by slimming down the language and compiler to a workable core and increasing compiler development productivity. The following phase will starting with one of the following possible features:

For updates on the progress refer to the milestones. The current ones are used as a way to track progress on a topic, rather than for representing fixed milestones. The old, out-of-date thread about roadmap progress can be found here.
The current and key areas of development are as follows:
slim the core below).
Reorganize existing tests. (Project)localError etc approach with an AST
(nkError) one (Project)There are more, the above have been carefully chosen based on the direction of the language; moreover, their impact goes beyond what's been described and intends to create a virtuous cycle. Examples:
func) as control-
flow and effects are no longer intertwined; lead to bug and language
design fixes due to a broad audit, ease compiler as a library usage for toolsCurrently, this repository and our matrix/irc are our primary community hubs; we'll introduce more as things grow. At this time our community is small but passionate We welcome any who are able and eager to collaborate on improving the compiler and associated tools.
Check the FAQ, or Project Board for an idea of where to help.
There's plenty to be done, and we appreciate even the smallest contribution to documentation! We look forward to seeing introductions and pull requests!
The compiler currently aims to support the following platform and architecture combinations:
Other platforms may work but aren't regularly tested.
Compiling the compiler is quite straightforward if you follow these steps:
To build from source you will need:
gcc 3.x/later or an alternative such as clang,
Visual C++ or Intel C++. It is recommended to use gcc 3.x or
later.git or wget to download the needed source repositories.build-essential package when using gcc on Ubuntu (and likely
other distros as well).Windows Note: Cygwin and similar POSIX runtime environments are not supported.
Then, if you are on a *nix system or Windows, the following steps should compile
Nimskull from source using gcc, git, and the koch build tool.
git clone https://github.com/nim-works/nimskull.git
cd nimskull
./koch.py boot -d:release
./koch.py tools -d:release
Finally, once you have finished the build steps (on Windows, Mac, or Linux) you
should add the bin directory to your PATH.
Contributing is simplified thanks to our contribution guide. Right now, the easiest and most important contribution is test suite improvement, also described in the guide.
koch is the build tool used to build various parts of Nim and to generate
documentation, among other things. The koch tool can also
be used to run the Nim test suite.
You may execute the tests using ./koch.py tests. The tests take a while to
run, but you can run a subset of tests by specifying a category (for example
./koch.py tests cat lang).
For more information on the koch build tool please see the documentation
within the doc/koch.rst file.
A language (community, compiler, etc) that is sustained through the collective efforts of its practitioners and their diverse backgrounds.
Attracting practitioners with diversity of experience and perspectives requires a language with broad applicability, from Web to Systems Programming all the while remaining efficient.
Onboarding practitioners requires a language that is familiar enough to get started in terms of syntax and initial concepts such as structured and modular programming.
Supporting practitioner-driven innovation requires a language that allows for experimentation without necessarily being an expert in all aspects of language development. Compile time facilities integrated into the language, such as compile time evaluation and a macro system provide an extension sandbox.
Practitioner collaborating and combining their software is assisted by a static type system that supports local inference, tuples, sum, and generic types, along with effect analysis.
A language that develops in such a manner is going to encounter what some might term as 'instability' via numerous backwards incompatible changes. We consider this a feature, instead we:
Popular languages are maintained through incredible amounts of funding from various entities; we do not see, nor seek, this happening for us. Alternatively, there are a number of languages that require unhealthy amounts of free labour from a few, we're not interested in that either. Instead as is described this language will focus on practitioners able to affect their tools and community.
It's convenient. Creating a compiler from scratch is labour intensive and the existing contributors are already familiar with the current code base. We chose to evolve it.
This project aims to become a different programming language, if you want Nim go use that.
There is lots to do, and we're very interested in people contributing to the compiler. First step is getting a development environment setup, then join the matrix chat and introduce yourself. It's a small community so time zones might not align, so please be patient.
We're presently reworking much of the compiler, removing dialects and half-baked features to end up with a slim down core. Some areas of contribution:
Yes! Feel free to join us on our nim-works channel or nim.works discord server! Please have a read of our Code of Conduct.
MIT
(top 30 of 328)
Nim
97.6%
HTML
1.2%