nim

  1. Alain De Vos

    About nimlanguage.

    Nim compiles fine to executables. It integrates well with QT6 & C++. Here some demo code, # Tuple on Stack type PersonStack = tuple name: string age: int var ap: PersonStack = (name: "Peter", age: 30) echo ap.name, ":",ap.age proc printit(p: PersonStack) = echo p.name echo...
  2. Alain De Vos

    Using zig-compiler to compile a nim-file or chicken-scheme-file to an executable

    The purpose is to demonstrate that you can use zig to compile a nim-file or chicken-scheme-file to an executable. Start by installing nim,zig,chicken-scheme: pkg install nim pkg install zig pkg install chicken5 Create a file written in nim language named "hello.nim" with contents: echo...
Back
Top