Skip to content

Instantly share code, notes, and snippets.

View ChrSteinert's full-sized avatar

Christian Steinert ChrSteinert

  • 16:45 (UTC +02:00)
View GitHub Profile
#r "nuget:FParsec"
open FParsec
type AttackVector =
| Network
| AdjacentNetwork
| Local
| Physical
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