1DOLLY 32MODULE startup-gamedev34REQUIRES TOOL slop5REQUIRES TOOL foreground6REQUIRES TOOL test7REQUIRES TOOL printf8REQUIRES TOOL graphics-demo910FILE /etc/dolly/init.slop11    if test -f "$HOME/.dollyrc"; then12      /bin/foreground /bin/slop -e "$HOME/.dollyrc"13      status=$?14      case "$status" in15        0|130) ;;16        *) printf 'Dolly: %s exited with status %s; continuing.\n' "$HOME/.dollyrc" "$status" >&2 ;;17      esac18    fi19    /bin/foreground /usr/bin/graphics-demo20    printf '\nDolly: image entry exited; entering the recovery Slop shell.\n'21    /bin/foreground -i /bin/slop2223FILE /home/dolly/.dollyrc24    printf '\033[33mDOLLY / GAMEDEV\033[0m\n'25    printf 'raylib 6 and Box3D run against Dolly exclusive framebuffer presentation.\n'26    printf 'Singularity starts now: G lifts the towers, E releases them, Space fires.\n'27    printf 'Drag to orbit; Q returns to Slop. Edit /usr/src/dolly/gamedev/graphics-demo.c\n'28    printf 'and rebuild with make -f /usr/src/dolly/gamedev/gamedev.mk.\n\n'29