I am new to object oriented from Bash. I have a very simple question that I having difficulty phrasing in Google or here on Stack Overflow.
How do I indicate the end of a for loop? The examples I have seen do not have a "Done" (from what I am used to in Bash). How would I run through this code until the last character is output? How do I then add more code without the program being included in the for loop?
for i in ['a', 'b', 'c', 'd']:
print i