F# program to perform the boolean operations
Program.fs
Output
kodingwindow@kw:~/fsharp$ dotnet run ——————————————————————————————————————————— Program to perform boolean operations ——————————————————————————————————————————— Value of a | true Value of b | false Value of not a | false Value of not b | true Value of a && b | false Value of a || b | true ——————————————————————————————————————————— kodingwindow@kw:~$
Advertisement