Say, for example, I have a C source file with a method like foo(a) , where a is a character.
I want to print the output foo for each character, is there an easier way than systematic and input p foo('a') , then p foo('b') ?
Ideally, I would really like the script to do this a little faster.
source share