From ce4fea5b471d63251d7725af5ab742277574ebcd Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Mon, 10 Sep 2018 00:27:35 +0100 Subject: [PATCH] add scratch pad and rename template file in library. --- DeathSocket/DeathSocket.fsproj | 5 ++++- DeathSocket/GridPainter.fs | 5 +++++ DeathSocket/Library.fs | 5 ----- DeathSocket/ScratchPad.fsx | 5 +++++ 4 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 DeathSocket/GridPainter.fs delete mode 100644 DeathSocket/Library.fs create mode 100644 DeathSocket/ScratchPad.fsx diff --git a/DeathSocket/DeathSocket.fsproj b/DeathSocket/DeathSocket.fsproj index df45432..0043982 100644 --- a/DeathSocket/DeathSocket.fsproj +++ b/DeathSocket/DeathSocket.fsproj @@ -5,7 +5,10 @@ - + + + + diff --git a/DeathSocket/GridPainter.fs b/DeathSocket/GridPainter.fs new file mode 100644 index 0000000..c80c9e7 --- /dev/null +++ b/DeathSocket/GridPainter.fs @@ -0,0 +1,5 @@ +namespace DeathSocket + + module GridPainter = + // code to go here... + let x = "begin" \ No newline at end of file diff --git a/DeathSocket/Library.fs b/DeathSocket/Library.fs deleted file mode 100644 index 5e59df0..0000000 --- a/DeathSocket/Library.fs +++ /dev/null @@ -1,5 +0,0 @@ -namespace DeathSocket - -module Say = - let hello name = - printfn "Hello %s" name diff --git a/DeathSocket/ScratchPad.fsx b/DeathSocket/ScratchPad.fsx new file mode 100644 index 0000000..b8ca8fc --- /dev/null +++ b/DeathSocket/ScratchPad.fsx @@ -0,0 +1,5 @@ +#load "GridPainter.fs" + +open DeathSocket + +// code to go here... \ No newline at end of file