Skip to content
nim logo

Nim

Nim is a general-purpose systems programming language that's designed to be efficient, expressive, and elegant. The Nim compiler produces dependency-free binaries for most platforms as well as JavaScript for the web.

Here are 867 public repositories matching this topic...

Nim
SoftwareApe
SoftwareApe commented Oct 1, 2019

When you run finish.exe twice you get (I decided I wanted the start menu entry after the fact)
C:\Users\<USERNAME>\.nimble\bin is not in your PATH environment variable.

This was an installation without admin rights. The variable is placed correctly in the user path without requiring (unnecessary) admin permissions.

Example

Run finish.exe twice without admin privileges on Windows 10

FranklinChen
FranklinChen commented May 15, 2018

I noticed that there's a variety of differences in loop iterations across languages. Kotlin has 1..1000000 which means going 1_000_000 times, from 1 through 1_000_000 inclusive. Some of the other implementations seem to be off from that by 1 in some direction or other, e.g., the Java version actually executes from 1 to 999_999. Obviously missing one iteration doesn't make any difference to any b

You can’t perform that action at this time.