Having trouble deciphering the right approach to using loops to output items in a list. I have a simple set file (ships.set) that contains a list of ship names:
[
["x", "wing"],
["a", "wing"],
["tie", "fighter"],
["tie", "interceptor"]
]
How do I write a response that simply lists out the ship names?
My pattern would be something like, “WHAT SHIPS #”.
Thanks for any guidance.