1st commit

This commit is contained in:
Aritra Banik
2024-02-03 16:37:29 +05:30
commit a27f498e2b
167 changed files with 97897 additions and 0 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 a3pkg/submodule
test "correct welcome":
check getWelcomeMessage() == "Hello, World!"