10 lines
122 B
Python
10 lines
122 B
Python
from sugar.simulator import Bot
|
|
|
|
bot = Bot()
|
|
bot.name = 'penelope'
|
|
|
|
bot.wait(20)
|
|
bot.share_chat('Nekkhamma')
|
|
|
|
bot.start()
|