Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 146 Bytes

File metadata and controls

11 lines (10 loc) · 146 Bytes

Singleton

classDiagram
class Singleton{
  - i32 data
  + new()
  + get_singleton() Singleton$
}
Singleton "1" o-- "1" Singleton
Loading