view tests/test_resources.nim @ 235:5f6d3511ef79

did: replace zippy with "standard" nim zip, compiled from source, fix some errors
author Sam <sam@basx.dev>
date Sat, 20 May 2023 17:44:55 +0700
parents b5d9410a8184
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()