-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPROJECT_LANG_1.fsscript
More file actions
30 lines (24 loc) · 1.4 KB
/
PROJECT_LANG_1.fsscript
File metadata and controls
30 lines (24 loc) · 1.4 KB
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
// Start of script
// Notes:
// Note: I am not very experienced with F# and currently have no way of testing this program. There is a chance it may not run, or run correctly/.
// Note: the # in the repository name was substituted with the word Sharp due to ASCII to ANSI limitations
begin
class projectLanguageFile1() {
printfn "Project language file 1"
printfn "For: seanpm2001/Learn-FSharp"
printfn "About:"
printfn "I decided to make F# the main project language file for this project (Seanpm2001/Learn-FSharp) as F# is the language this project is dedicated to, because this project is about learning the F# programming language. It only makes sense to F# the official language for this project. It is getting its own project language file, starting here."
break
}
return 0
end
// Output
// Project language file 1
// For: seanpm2001/Learn-FSharp
// About:
// I decided to make F# the main project language file for this project (Seanpm2001/Learn-FSharp) as F# is the language this project is dedicated to, because this project is about learning the F# programming language. It only makes sense to F# the official language for this project. It is getting its own project language file, starting here.
// File info
// File type: F# source file (*.fs *.fsi *.fsx *.fsscript)
// File version: 1 (2022, Sunday, September 11th at 6:44 pm PST)
// Line count (including blank lines and compiler line): 31
// End of script