Palestine/humanity is in danger

Results 25 issues of Palestine/humanity is in danger

### What happened? here I get 8x slow down when I switch to `--mm:arc`. ```nim import std/sugar import benchy proc toIter*[T](s: Slice[T]): iterator: T = iterator it: T {.closure.} =...

Regression
Performance
ARC/ORC

### Example `module1`/`defs.nim`: ```nim type MyObj* = object field1*: int ``` `module2`/`defs.nim`: ```nim type MyObj* = object field2*: int ``` `main.nim`: ```nim import module1/defs as md1 import module2/defs as md2...

Regression

### Example ```nim type Percent = range[0.0 .. 1.0] # type Percent = float # using unlimited `float` works fine proc initColor*(alpha: Percent): bool = echo alpha const moduleInstanceStyle =...

const

[playground](https://play.nim-lang.org/#ix=46wk) ### Example ```nim proc `==`[T](a, b: set[T]): bool = debugEcho (a.card, b.card) debugEcho (a, b) debugEcho "---" #

**info:** - nim compiler version: `1.4.8` - inim version : 0.6.1 - os: windows 10 **the code:** ``` import os nim> proc uuu= echo "start" sleep 1000 echo "end" nim>...

bug
help wanted

[refrence](https://docs.couchdb.org/en/latest/api/database/shard.html#db-shards-doc) current request ```bash HTTP/1.1 200 OK Cache-Control: must-revalidate Content-Length: 94 Content-Type: application/json Date: Fri, 18 Jan 2019 20:08:07 GMT Server: CouchDB/2.3.0-9d4cb03c2 (Erlang OTP/19) ``` expected request: ```bash GET /db/_shards/{docid}...

patches-welcome

when I click on the repo link at the end of the page, I go to https://xmonader.github.io/nimdays/github.com/xmonader/nim-parsec but it should redirect me to https://github.com/xmonader/nim-parsec

```nim (1 .. 10) |> define( a = it + 1 b = a +2 ) .map(b) .toseq() ```

wontfix
feature

**expression:** `-10^2` **expected answer:** [`-100`](https://www.google.com/search?q=-10%5E2) **mathexpr:** `100` tested on mathexpr `1.3.2` I wrote [a library](https://github.com/hamidb80/emath) that does not have this issue

in REPL: ``` mathexpr>>> ident error: Unexpected character `` ``` tested in mathexpr `1.3.2`