!7 sS theRiddle = [[ What is Fibonacci number 1? What is Fibonacci number 2? What is Fibonacci number 3? ]]; sS theFacts = [[ Fibonacci number n is Fibonacci number n-1 plus Fibonacci number n-2 if n > 2. There is no Fibonacci number with a negative index. There is no Fibonacci number 0. Fibonacci number 1 is 1. Fibonacci number 2 is 1. ]]; sS concepts = [[ ]]; static L facts; p { aiEnhancements(); //useConceptsDump(concepts); facts = clParse(printNumberedLines(linesToCL(theFacts))); printNumberedLines(facts); }