F#

Classes

Declaring a class

// class declaration with a list of parameters for a primary constructor
type Car (model: string, plates: string, miles: int) =    

    // secondary constructor (it must call primary constructor)
    new (model, plates) = 
        let miles = 0
        new Car(model, plates, miles)
    
    // fields
    member this.model = model
    member this.plates = plates
    member this.miles = miles
    

Creating an instance

let myCar = Car ("Honda Civic", "blue", 23)
// or more explicitly
let (myCar : Car) = new Car ("Honda Civic", "blue", 23)

This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow