You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/examples/fsharp-interactive.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,4 +60,9 @@ F# Interactive (FSI) is a powerful tool for executing F# code snippets and scrip
60
60
61
61
```powershell
62
62
dotnet fsi example.fsx
63
-
```
63
+
```
64
+
## Additional Notes
65
+
66
+
- Fsharp Interactive does allow you to have modules and types across different files, for simplicity we have only 1 file in this example.
67
+
- The fsharp compiler does not support generic attributes
68
+
- The fsharp compiler requires code and files to be declared in order, due to the fsharp compiler being sequential. For example, if you have a module that depends on another module, the module it depends on must be declared first.
0 commit comments