Skip to content

Commit ca9f172

Browse files
committed
Removed generated functions.
1 parent 9e70283 commit ca9f172

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/lric.lfe

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
(defmodule lric
33
(export all))
44

5-
(defun my-adder (x y)
6-
(+ x (+ y 1)))
5+
(defun noop ()
6+
'noop)

test/unit-lric-tests.lfe

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88

99
(include-lib "ltest/include/ltest-macros.lfe")
1010

11-
(deftest my-adder
12-
(is-equal 4 (: lric my-adder 2 2)))
11+
(deftest placeholder
12+
(is-equal 1 1))

0 commit comments

Comments
 (0)