Làm cách nào tôi có thể trả về unit
từ một biểu thức trong f #? Ví dụ:Cách trả lại đơn vị từ một biểu thức trong f #
let readInt =
let str = Console.ReadLine()
let (succ, num) = Int32.TryParse(str)
match succ with
| true -> Some(num)
| _ -> None
match readInt with
| Some(v) -> Console.WriteLine(v)
| None -> ignore //i don't want to do anything,
// but i don't know how to ignore this brunch of the expression