cassanof commited on
Commit
2347d76
1 Parent(s): 0f7c08f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -23
README.md CHANGED
@@ -1,23 +0,0 @@
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):\n
15
- \"\"\"\n
16
- Makes a kill chain phase for a kill chain\n
17
- \"\"\"\n
18
- return {\n
19
- \"kill_chain_name\": kill_chain_name,\n
20
- \"phase_name\": phase_name\n
21
- }"
22
- example_title: "Meh"
23
- ---