Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
Make github actions pass, need 'start' in my program.
Browse files Browse the repository at this point in the history
  • Loading branch information
wmealing committed Oct 28, 2023
1 parent 954525d commit 6d260b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/main.lfe
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
(defun main (args)
(let ((script-name (escript:script_name)))
(io:format "Running script '~s' with args ~p ...~n" `(,script-name ,args))
(io:format "~p~n" `(,(untitled-project:my-fun)))))
(io:format "~p~n" `(,(untitled-project:start)))))
4 changes: 2 additions & 2 deletions src/untitled-project.lfe
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
(defmodule untitled-project
(export
(my-fun 0)))
(start 0)))

;;; -----------
;;; library API
;;; -----------

(defun my-fun ()
(defun start ()
'hello-world)

0 comments on commit 6d260b5

Please sign in to comment.