From 05e70256d001a1b00712ae7cba90f110b783f007 Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Tue, 26 Mar 2024 12:51:08 +0000 Subject: [PATCH] chore: initialise project (julia) --- .env | 2 ++ Justfile | 4 ++++ julia/main.jl | 5 +++++ 3 files changed, 11 insertions(+) create mode 100644 .env create mode 100644 Justfile create mode 100644 julia/main.jl diff --git a/.env b/.env new file mode 100644 index 0000000..ca10588 --- /dev/null +++ b/.env @@ -0,0 +1,2 @@ +# Set version of program +VERSION=0.1.0 diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..84ada8b --- /dev/null +++ b/Justfile @@ -0,0 +1,4 @@ +set dotenv-load + +julia: + julia julia/main.jl diff --git a/julia/main.jl b/julia/main.jl new file mode 100644 index 0000000..25656e6 --- /dev/null +++ b/julia/main.jl @@ -0,0 +1,5 @@ +version = ENV["VERSION"] + +printstyled("\nsage.jl $version\n", color=:cyan, bold=true); +println("A collection of cybersecurity-related utilities for my personal use."); +printstyled("This is the part of the program responsible for data visualisation and manipulation.\n", bold=true);