# Shows the list of installed libraries (in /lib)
# if fails to do anything when PLAY is clicked, update firmware in
#diagram.json according to the versions at https://github.com/wokwi/firmware-assets/tree/gh-pages/circuitpython
import os
print("Hello!")
print("I have the following libraries installed:")
print()
color_pink = "\033[35;1m"
color_reset = "\033[0m"
for libname in os.listdir("/lib"):
print("* {}{}{}".format(color_pink, libname, color_reset))