add: init
This commit is contained in:
commit
7f2a90738b
|
|
@ -0,0 +1,8 @@
|
|||
UseTab: true
|
||||
IndentWidth: 4
|
||||
---
|
||||
Language: Cpp
|
||||
# Force pointers to the type for C++.
|
||||
DerivePointerAlignment: false
|
||||
PointerAlignment: Left
|
||||
---
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
(
|
||||
defun f (x)
|
||||
(
|
||||
if (<= x 1)
|
||||
1
|
||||
(
|
||||
+
|
||||
(f (- x 1))
|
||||
(f (- x 2))
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(f 15)
|
||||
Loading…
Reference in New Issue