Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/samples/Samples.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<Reference Include="../../src/Lib/bin/Debug/netstandard2.0/Fable.Repl.Lib.dll" />
</ItemGroup>
<ItemGroup>
<Compile Include="tour/helloworld.fs" />
<Compile Include="tour/functions.fs" />
<Compile Include="tour/primitives.fs" />
<Compile Include="tour/collections.fs" />
Expand Down
7 changes: 6 additions & 1 deletion docs/samples/samples.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"type": "category",
"label": "F# Basics",
"children": [
{
"type": "menu-item",
"label": "Hello World",
"fsharpCode": "tour/helloworld.fs"
},
{
"type": "menu-item",
"label": "Functions",
Expand Down Expand Up @@ -40,4 +45,4 @@
}
]
}
]
]
1 change: 1 addition & 0 deletions docs/samples/tour/helloworld.fs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
printfn "Hello World!"
1 change: 1 addition & 0 deletions public/samples/Samples.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<Reference Include="../../src/Lib/bin/Debug/netstandard2.0/Fable.Repl.Lib.dll" />
</ItemGroup>
<ItemGroup>
<Compile Include="tour/helloworld.fs" />
<Compile Include="tour/functions.fs" />
<Compile Include="tour/primitives.fs" />
<Compile Include="tour/collections.fs" />
Expand Down
7 changes: 6 additions & 1 deletion public/samples/samples.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"type": "category",
"label": "F# Basics",
"children": [
{
"type": "menu-item",
"label": "Hello World",
"fsharpCode": "tour/helloworld.fs"
},
{
"type": "menu-item",
"label": "Functions",
Expand Down Expand Up @@ -40,4 +45,4 @@
}
]
}
]
]
1 change: 1 addition & 0 deletions public/samples/tour/helloworld.fs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
printfn "Hello World!"