Browse Source

add scratch pad and rename template file in library.

master
Craig Oates 6 years ago
parent
commit
ce4fea5b47
  1. 5
      DeathSocket/DeathSocket.fsproj
  2. 5
      DeathSocket/GridPainter.fs
  3. 5
      DeathSocket/Library.fs
  4. 5
      DeathSocket/ScratchPad.fsx

5
DeathSocket/DeathSocket.fsproj

@ -5,7 +5,10 @@
</PropertyGroup>
<ItemGroup>
<Compile Include="Library.fs" />
<Compile Include="GridPainter.fs" />
<None Include="ScratchPad.fsx" />
</ItemGroup>
<ItemGroup />
</Project>

5
DeathSocket/GridPainter.fs

@ -0,0 +1,5 @@
namespace DeathSocket
module GridPainter =
// code to go here...
let x = "begin"

5
DeathSocket/Library.fs

@ -1,5 +0,0 @@
namespace DeathSocket
module Say =
let hello name =
printfn "Hello %s" name

5
DeathSocket/ScratchPad.fsx

@ -0,0 +1,5 @@
#load "GridPainter.fs"
open DeathSocket
// code to go here...
Loading…
Cancel
Save