forked from fsprojects/ProjectScaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.fsx
67 lines (51 loc) · 2.4 KB
/
index.fsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
(*** hide ***)
// This block of code is omitted in the generated HTML documentation. Use
// it to define helpers that you do not want to show in the documentation.
#I "../../bin"
(**
F# Project Scaffold
===================
Documentation
<div class="row">
<div class="span1"></div>
<div class="span6">
<div class="well well-small" id="nuget">
The F# ProjectTemplate library can be <a href="https://nuget.org/packages/FSharp.ProjectTemplate">installed from NuGet</a>:
<pre>PM> Install-Package FSharp.ProjectTemplate</pre>
</div>
</div>
<div class="span1"></div>
</div>
Example
-------
This example demonstrates using a function defined in this sample library.
*)
#r "FSharp.ProjectTemplate.dll"
open FSharp.ProjectTemplate
printfn "hello = %i" <| Library.hello 0
(**
Some more info
Samples & documentation
-----------------------
The library comes with comprehensible documentation.
It can include a tutorials automatically generated from `*.fsx` files in [the content folder][content].
The API reference is automatically generated from Markdown comments in the library implementation.
* [Tutorial](tutorial.html) contains a further explanation of this sample library.
* [API Reference](reference/index.html) contains automatically generated documentation for all types, modules
and functions in the library. This includes additional brief samples on using most of the
functions.
Contributing and copyright
--------------------------
The project is hosted on [GitHub][gh] where you can [report issues][issues], fork
the project and submit pull requests. If you're adding a new public API, please also
consider adding [samples][content] that can be turned into a documentation. You might
also want to read the [library design notes][readme] to understand how it works.
The library is available under Public Domain license, which allows modification and
redistribution for both commercial and non-commercial purposes. For more information see the
[License file][license] in the GitHub repository.
[content]: https://github.com/fsprojects/FSharp.ProjectScaffold/tree/master/docs/content
[gh]: https://github.com/fsprojects/FSharp.ProjectScaffold
[issues]: https://github.com/fsprojects/FSharp.ProjectScaffold/issues
[readme]: https://github.com/fsprojects/FSharp.ProjectScaffold/blob/master/README.md
[license]: https://github.com/fsprojects/FSharp.ProjectScaffold/blob/master/LICENSE.txt
*)