5 lines
103 B
Python
5 lines
103 B
Python
class DemoPlainClass:
|
|
a: int # <1>
|
|
b: float = 1.1 # <2>
|
|
c = 'spam' # <3>
|