add: init

This commit is contained in:
Eatswap 2022-12-08 00:55:46 +08:00
commit 7f2a90738b
Signed by: Eatswap
GPG Key ID: BE661106A1F3FA0B
3 changed files with 28 additions and 0 deletions

8
.clang-format Normal file
View File

@ -0,0 +1,8 @@
UseTab: true
IndentWidth: 4
---
Language: Cpp
# Force pointers to the type for C++.
DerivePointerAlignment: false
PointerAlignment: Left
---

6
Makefile Normal file
View File

@ -0,0 +1,6 @@
all:
echo "Working"
clean:
echo "Cleaning"

14
sample.lisp Normal file
View File

@ -0,0 +1,14 @@
(
defun f (x)
(
if (<= x 1)
1
(
+
(f (- x 1))
(f (- x 2))
)
)
)
(f 15)