Will Threadpool and Malebolgia merge?
good job!
Why not continue with Konstantin Zaitsev?
Nim language has fallen out of the top 100 on the ITOBE programming language
ranking this month. 2024.6
HappyX looks great, but it always causes Nimbuggest and Nimlsp crashes in
vscode. I have tried all known nim and nimlsp extensions, but none are
available. Am I the only one who has encountered this situation?
There may be two question:
1\. How to implement a custom Pragma macro? For example: {. Emit.}, {. link.}.
2.How to use macros to implement decorators similar to Java and Python, such as
@Authentication(userId).
`-d:ssl`
`import sugar let f = (x: int) -> int => x * x let g = proc(x: int): int = x *
x let m = (x: int, y: (int) -> int) => y(x) echo f(100) echo g(100) echo
m(100,f) echo m(100,(x: int) => x * x) `
Run
import sugar let f = (x: int)-> int => x * x echo f(100)