view tests/test_resources.nim @ 402:6001079399a6

did: an "intermediate" commit, for syncing between machines, nothing special to see here
author Sam <sam@basx.dev>
date Thu, 28 Dec 2023 22:33:12 +0700
parents 5f6d3511ef79
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()