object diagrams

Work in Progress

Concept

Object diagrams

plantuml
@startuml
object s1:Student {
    name = "Alice"
}

object s2:Student {
    name = "Bob"
}

object c1:Course {
    code = "CS2103T"
}

"c1:Course" --> "s1:Student"
"c1:Course" --> "s2:Student"
@enduml

no dependendies in object diagram