Template
mirror of
https://github.com/kenryuS/report-temp.git
synced 2026-08-13 20:51:42 +09:00
update
This commit is contained in:
@@ -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)
|
||||
```
|
||||
Reference in New Issue
Block a user