view tests/test_resources.nim @ 869:65afec4cb6c6

did: overhaul dynamic array-api in a few places
author Sam <sam@basx.dev>
date Thu, 04 Jan 2024 21:13:11 +0700
parents 275ac4cdf7e0
children 1ab09f8cc68d
line wrap: on
line source

import std/streams

import semicongine

proc main() =
  echo "Mods available: ", modList()
  for modName in modList():
    echo modName, ":"
    selectedMod = modName
    for i in walkResources():
      echo "  ", i, ": ", loadResource(i).readAll().len

when isMainModule:
  main()