Aditya Siram

Results 18 issues of Aditya Siram

Say we have the following modules. `mymacro.nim` (which defines a macro): ```nim macro aMacro*(u:untyped):untyped = echo "in macro" result = u ``` `myproc.nim` (which uses the macro as a pragma):...

Pragmas
Symbol Resolution
Generic Procs

I can't use a template exported by module as a pragma in another: ### Example ```nim module a: template t*(x:untyped): untyped = echo "template t" module b: import a proc...

Pragmas
Templates
Symbol Resolution

[proc get](https://github.com/nim-lang/Nim/blob/master/lib/pure/options.nim#L128) raises an `UnpackError` but the docs don't seem to infer it. The screenshot is from a fresh webpage generated from HEAD. ![image](https://user-images.githubusercontent.com/76703/46482541-71642380-c7bb-11e8-9c8a-9b983b72c290.png)

Effect Tracking
Documentation Generation
Generic Procs

Hi! I didn't know this library existed so I just published https://github.com/deech/cabal-auto-expose/tree/master/cabal-auto-expose. Since we have some overlapping goals would you like to discuss merging the functionality into one project or...

question

Hi, Not really an issue, just wanted to let you know that I'm the maintainer of Haskell bindings to FLTK (https://github.com/deech/fltkhs) and I've also written bindings to your Webkit port...

Compile time `let` and `var` are currently [buggy](https://github.com/nim-lang/Nim/issues/11047) but due to a recent fix all the following constructs: ``` let x {.compileTime.} = ... let (a,b) {.compileTime.} = ... ```...