Commit 2a6ce332 by BellCodeEditor

save project

parent ec4f88b3
Showing with 10 additions and 8 deletions
......@@ -4,12 +4,13 @@ class FBL:
self.hp=hp
self.attack=attack
self.level=level
SB=FBL("SB",1,2,3)
def a():
SB.level=SB.level+1
SB.hp=SB.hp+9999999999999999999
SB.attack=SB.attack+0
print(SB.level)
a()
a()
def a(self):
self.level=self.level+1
self.hp=self.hp+9999999999999999999
self.attack=self.attack+0
a=FBL(1,2,3,4)
a.a()
print(a)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment