Guest User

Untitled

a guest
Oct 1st, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. class Testclass:
  2.     string = ""
  3.     def __init__(self, message):
  4.         self.string = message
  5.    
  6.     def testFunc(self):
  7.         basic.show_string(self.string)
  8.  
  9. def on_forever():
  10.     x = Testclass("Hello World")
  11.     x.testFunc()
  12.    
  13. basic.forever(on_forever)
  14.  
Add Comment
Please, Sign In to add comment