Kaba struct Profile ed

...

Syntax ed

struct Profile
    var libs_optional: string[]
    var name: string

    # constructors
    func mut __init__()
    func mut __init__(name: string, libs_optional: string[])

    # operators
    func mut __assign__(other: Profile)  # Profile = Profile

Elements ed

var libs_optional: string[]
...

var name: string
...