python
from asciimatics.screen import Screen
from asciimatics.effects import Cycle, Stars
from asciimatics.renderers import FigletText
def demo(screen):
screen.play([Cycle(screen, FigletText("Hello, World!", font='big')),
Cycle(screen, FigletText("Python asciimatics")),
Stars(screen)], stop_on_resize=True)
Screen.wrapper(demo)