cassanof commited on
Commit
d434f1b
1 Parent(s): 9a96f6f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -9
README.md CHANGED
@@ -1,14 +1,14 @@
1
  ---
2
  widget:
3
- - text: "-- This function calculates the nth Fibonacci number iteratively. The Fibonacci sequence is a series
4
- -- of numbers where the next number is found by adding up the two numbers before it.
5
- -- For example, the sequence starting with 0 and 1 is: 0, 1, 1, 2, 3, 5, 8, 13, ....
6
- function fibonacci(n)
7
- local a, b = 0, 1
8
- for i = 1, n do
9
- a, b = b, a+b
10
- end
11
- return a
12
  end"
13
  example_title: "Good"
14
  - text: "def make_kill_chain_phase(kill_chain_name, phase_name):
 
1
  ---
2
  widget:
3
+ - text: "-- This function calculates the nth Fibonacci number iteratively. The Fibonacci sequence is a series\n
4
+ -- of numbers where the next number is found by adding up the two numbers before it.\n
5
+ -- For example, the sequence starting with 0 and 1 is: 0, 1, 1, 2, 3, 5, 8, 13, ....\n
6
+ function fibonacci(n)\n
7
+ local a, b = 0, 1\n
8
+ for i = 1, n do\n
9
+ a, b = b, a+b\n
10
+ end\n
11
+ return a\n
12
  end"
13
  example_title: "Good"
14
  - text: "def make_kill_chain_phase(kill_chain_name, phase_name):