This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#r "nuget:FParsec" | |
open FParsec | |
type AttackVector = | |
| Network | |
| AdjacentNetwork | |
| Local | |
| Physical |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let a0 = 3 | |
let b0 = 5 | |
let c0 = a0 * b0 | |
let d0 = 3L | |
let e0 = 5L | |
let f0 = d0 * e0 | |
if a0 |> int64 <> d0 then failwith "Int64 constants are not emitted properly" | |
if b0 |> int64 <> e0 then failwith "Int64 constants are not emitted properly" | |
if c0 |> int64 <> f0 then failwith "Int64 constants are not emitted properly" | |
let a1 = 1997 |