begin shift to nim code base

This commit is contained in:
Emile Clark-Boman 2025-06-16 20:47:52 +10:00
parent 33bcffdc69
commit 4b20f9961b
25 changed files with 625 additions and 303 deletions

12
tests/test1.nim Normal file
View file

@ -0,0 +1,12 @@
# This is just an example to get you started. You may wish to put all of your
# tests into a single file, or separate them into multiple `test1`, `test2`
# etc. files (better names are recommended, just make sure the name starts with
# the letter 't').
#
# To run these tests, simply execute `nimble test`.
import unittest
import src/submodule
test "correct welcome":
check getWelcomeMessage() == "Hello, World!"