From e71c3429507a7cd911e7d8afeffa42662c4c12ff Mon Sep 17 00:00:00 2001 From: cereci5049 Date: Sun, 26 May 2024 15:21:45 +0530 Subject: [PATCH] 002 --- a4.nimble | 13 +++++++++++++ src/a4.nim | 5 +++++ 2 files changed, 18 insertions(+) create mode 100644 a4.nimble create mode 100644 src/a4.nim 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!")