Nim devroom at FOSDEM this weekend

2022-02-07 Thread jrenner
the videos are available now:

Is it possible to have an embedded Nimscript interpreter when compiling with --app:lib ?

2021-04-28 Thread jrenner
I made a simple example of reading some values from a nim script and setting an object with those values. it involved `import compiler / [nimeval, llstream]` but since this is a Godot project the nim code is compiled with --app:lib it seems like this breaks the setupVM proc in compiler since it

When to use nim.cfg vs config.nims?

2021-04-18 Thread jrenner
Is there any general information on when nim.cfg should be used vs config.nims? maybe some sort of style consesus? If I had to guess, I would say that config.nims is the newer, better way to go but both are supported.