This commit is contained in:
2026-07-23 18:13:11 +09:00
parent 2c996ad3f1
commit 101067a32e
11 changed files with 133 additions and 10 deletions
+15
View File
@@ -0,0 +1,15 @@
# Part 1
* Normal
* *Italic*
* **Bold**
* `code`
> quote
```python
def fib(n):
if n <= 2:
return 1
return fib(n - 1) + fib(n - 2)
```