I know this is stupid question. I can create an empty class like the following in c#.
class Customer{}
But How can I do this in F#? This is my try
type Customer() =
let _ = ()
What is the correct way?
I know this is stupid question. I can create an empty class like the following in c#.
class Customer{}
But How can I do this in F#? This is my try
type Customer() =
let _ = ()
What is the correct way?