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