5 lines
No EOL
145 B
Python
5 lines
No EOL
145 B
Python
class CPU:
|
|
def __init__(self, name, benchmark, count):
|
|
self.name = name
|
|
self.benchmark = benchmark
|
|
self.count = count |