diff --git a/a4.nimble b/a4.nimble new file mode 100644 index 0000000..958127e --- /dev/null +++ b/a4.nimble @@ -0,0 +1,13 @@ +# Package + +version = "0.1.0" +author = "cereci5049" +description = "School Management System" +license = "GPL-2.0-or-later" +srcDir = "src" +bin = @["a4"] + + +# Dependencies + +requires "nim >= 2.0.2" diff --git a/src/a4.nim b/src/a4.nim new file mode 100644 index 0000000..862d40c --- /dev/null +++ b/src/a4.nim @@ -0,0 +1,5 @@ +# This is just an example to get you started. A typical binary package +# uses this file as the main entry point of the application. + +when isMainModule: + echo("Hello, World!")