Is Nim Dead?

2023-11-25 Thread satoshi
Is Nim Dead?

Is Nim Dead?

2023-11-25 Thread ElegantBeef
The mythological figure? Probably. The language that had a PR merged 15 hours ago at the time of writing this? You decide.

Is Nim Dead?

2023-11-25 Thread didlybom
Why would you think that? I think it is more alive than ever! There are a lot of very interesting projects going on and the language is improving at a great pace!

Is Nim Dead?

2023-11-25 Thread alireza
!yes

Hướng dẫn chơi cá độ bóng đá online tại nhà cái trực tuyến chuẩn nhất

2023-11-25 Thread dulichviet123
Hội viên mới lần đầu nạp từ 700,000 trở lên tặng ngay 700,000 trải nghiệm Để đăng ký nhận điểm thưởng, bạn cần phải không có hồ sơ cá cược và hoàn thành xác thực tên thật của tài khoản trong vòng 24 giờ. Vui lòng liên hệ với nhân viên dịch vụ khách hàng

Exceptions not being handled with libuv: bug or what?

2023-11-25 Thread dadadanix
I've decided to investigate further this behavior, so I set up a very simple program that calls a C function and then a Nim one that is defined through `cdecl`: {.emit: """#include #include typedef struct { void (*callback)(); } Scallback; in

Exceptions not being handled with libuv: bug or what?

2023-11-25 Thread Araq
How about: proc impl() =discard "..." proc wrapperForLibUv(future: ???) {.cdecl.} = try: impl() except: future.setError() Run But I still don't understand the problem tbh.

Is Nim Dead?

2023-11-25 Thread 4n0n4me
Why! Will you say V is dead?

Capture atomics in closure

2023-11-25 Thread bobbersen
proc main() = var threads: array[0..4, Thread[tuple[a, b: int]]] var res: Atomic[int] proc worker(interval: tuple[a, b: int]) {.gcsafe, nimcall, thread.} = # loop over interval and compute some value res += value for i in 0..high(threads):

Is Nim Dead?

2023-11-25 Thread SolitudeSF
wish it was

NIR

2023-11-25 Thread rel
Yes, that is known, but is a direct compiler to wasm - without C compiler tools - on the roadmap? Since the GC in the browsers is experimental many UI frameworks (Flutter Dart, Composer Kotlin, Blazor C#, Avalonia C#, ...) try to support WebAssembly in the browser. Most of the frameworks use We

Active Keto Gummies Australia:- Official Website, Price And Store

2023-11-25 Thread geraldtlu
Active Keto Gummies Australia :- Vitamin Dee Gummies Australia are safe provided you take them in the recommended dosage, and you must consult with your physician before starting to take the Smart Hemp Gummies Australia. Facebook Page:-

Is Nim Dead?

2023-11-25 Thread miran
> Is Nim Dead? AlwaysHasBeen.jpeg

Is Nim Dead?

2023-11-25 Thread termer
Nim is dead. Long live Nim. Thank you for making this thread. This reply is my punishment for taking the bait and clicking on it.

Is Nim Dead?

2023-11-25 Thread Araq
Enough of this.

NIR

2023-11-25 Thread Araq
ORC does not need "GC in the browsers" and we need stability moreso than yet "another strong feature of Nim". NIR is the path for more stability.

NIR

2023-11-25 Thread isaiah
I believe Nim is a more powerful and beautiful language than most people see it to be and also simple.please What is an NIR?

The Science Behind Active Keto Gummies Australia-

2023-11-25 Thread justinsnide
Active Keto Gummies Australia :- Active Keto Gummies Australia are made with powerful fixings like garcinia combogia, BHB ketones, apple juice vinegar, and so on that help with sound weight loss. Smart Hemp Gummies Australia is the most amazing weight loss discovery in history. Facebook Page:-

NIR

2023-11-25 Thread rel
I mean with GC for WebAssembly was the time other GC-based languages started to bring their language to the browser intensively. I see your path but doesn't an IR in general offer the possibility to implement a new compiler target easier too? I did not find a roadmap 2024. Does a roadmap for 202

RAD system for Nim?

2023-11-25 Thread AntonioFS
Hello. I think I read that the first version of Nim was made with Lazarus Free Pascal. I visited your website and was pleasantly surprised to see that you have your own IDE and a RAD system connected to the source code of the application being made. This is appealing, although these days I have

RAD system for Nim?

2023-11-25 Thread Araq
Nah, there is nothing like that in the pipeline, sorry.

RAD system for Nim?

2023-11-25 Thread AntonioFS
Hello. Thank you very much for your reply. Best regards. Antonio F.S.

RAD system for Nim?

2023-11-25 Thread AntonioFS
Hello. I would like to take advantage of this thread to get advice on a GUI system that can be easily adapted to Nim. Best regards. Antonio F.S.

Capture atomics in closure

2023-11-25 Thread ElegantBeef
I'd say just turn it into a `Thread[a, b: int, c: ptr Atomic[int]]` you already want to refer to the stack of the spawning thread. Threading does not allow closure procedures, so you have to pass the 'environment' explicitly.

RAD system for Nim?

2023-11-25 Thread oyster
I wrote a little project which can convert ui layout file created by into code. The bad news are 1. is in Chinese, and there are some false virus reports on it. Why I choose it? Because it is small and supplies a dra

Delcare NimMain as constructor when --app:lib

2023-11-25 Thread Boston
Would it be a bad idea to suggest that the compiler by default gen NimMain as `__attribute__((constructor))` when using `nim c|cpp` and `--app:lib`? Obviously this entails adding another define to reverse this behavior, or alternatively make this behavior it's own define.

Delcare NimMain as constructor when --app:lib

2023-11-25 Thread Araq
Instead we should generate an empty `NimMain` for backwards compat and have the init logic inside a `__attribute__((constructor)) NimInit`.