apatheia/build.nims
Jaremy Creechley 61ff2594d3
Feature: handle seq[byte] and strings using openArray's and memory retention (#7)
Limited support for passing seq's of bytes and strings to tasklets using openArray
2024-02-16 17:13:59 -07:00

9 lines
209 B
Nim

import std/[os, strutils]
task test, "unit tests":
for file in listFiles("tests"):
let name = file.splitPath().tail
if name.startsWith("t") and name.endsWith(".nim"):
exec "nim c -r " & file