From 8fd7ba7ae383f0d60e7c6eb95de2c1cf832be754 Mon Sep 17 00:00:00 2001 From: "F# Core Engineering Group (repo management)" Date: Thu, 25 Apr 2024 15:01:50 +0100 Subject: [PATCH] Add test.fs to print hello world --- README.md | 4 +++- test.fs | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 test.fs diff --git a/README.md b/README.md index c77662e..34455b6 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ -# test-public \ No newline at end of file +# test-public + +This repository now includes a `test.fs` file, which is an F# program designed to print "hello world" when executed. diff --git a/test.fs b/test.fs new file mode 100644 index 0000000..2639c61 --- /dev/null +++ b/test.fs @@ -0,0 +1,5 @@ +// This F# program prints "hello world" to the console +[] +let main argv = + printfn "hello world" + 0 // Return an integer exit code