"""
PingPong.py - A simple ping-pong game for the Raspberry Pi Pico
Author: Arijit Sengupta
"""
import time
from PingpongController import PingpongController
time.sleep(0.1)
print('Welcome to ping pong')
c = PingpongController()
c.run()
"""
PingPong.py - A simple ping-pong game for the Raspberry Pi Pico
Author: Arijit Sengupta
"""
import time
from PingpongController import PingpongController
time.sleep(0.1)
print('Welcome to ping pong')
c = PingpongController()
c.run()