From dfe209590b3bc42e9c4397f6ebbe31aa06107d06 Mon Sep 17 00:00:00 2001 From: Anant Thazhemadam Date: Tue, 5 Mar 2024 13:18:32 +0530 Subject: [PATCH] add PR for testing formatting workflows Signed-off-by: Anant Thazhemadam --- TestFormattingWorkflows/Project.toml | 4 ++++ TestFormattingWorkflows/src/TestFormattingWorkflows.jl | 5 +++++ 2 files changed, 9 insertions(+) create mode 100644 TestFormattingWorkflows/Project.toml create mode 100644 TestFormattingWorkflows/src/TestFormattingWorkflows.jl diff --git a/TestFormattingWorkflows/Project.toml b/TestFormattingWorkflows/Project.toml new file mode 100644 index 0000000..3a47756 --- /dev/null +++ b/TestFormattingWorkflows/Project.toml @@ -0,0 +1,4 @@ +name = "TestFormattingWorkflows" +uuid = "e9b61fb1-0a21-40c8-88eb-53d7caff91f5" +authors = ["Anant Thazhemadam "] +version = "0.1.0" diff --git a/TestFormattingWorkflows/src/TestFormattingWorkflows.jl b/TestFormattingWorkflows/src/TestFormattingWorkflows.jl new file mode 100644 index 0000000..3cd4ec2 --- /dev/null +++ b/TestFormattingWorkflows/src/TestFormattingWorkflows.jl @@ -0,0 +1,5 @@ +module TestFormattingWorkflows + +greet() = print("Hello World!") + +end # module TestFormattingWorkflows