Skip to content

Commit 7fe1338

Browse files
committed
add projected necessary files
1 parent 48d6690 commit 7fe1338

5 files changed

Lines changed: 9 additions & 1 deletion

File tree

src/core.gleam

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pub type LispVal {
2+
Atom(String)
3+
}

src/evaluator.gleam

Whitespace-only changes.

src/glisp.gleam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import gleam/io
22

3-
pub fn main() -> Nil {
3+
pub fn glisp_greet() -> Nil {
44
io.println("Hello from glisp!")
55
}

src/parser.gleam

Whitespace-only changes.

src/repl.gleam

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import gleam/io
2+
3+
pub fn main() -> Nil {
4+
io.println("Hello from glisp!")
5+
}

0 commit comments

Comments
 (0)