mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
9 lines
179 B
Python
Executable File
9 lines
179 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import class_test
|
|
|
|
my_class_test = class_test.ClassTest("abc");
|
|
print(my_class_test.getName())
|
|
my_class_test.setName("012")
|
|
print(my_class_test.getName())
|