forked from XAMPPRocky/tokei
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add LFE support * Revert formatting changes to README.md * Fix formatting again * Update CI badge in README.md (#4) * Add test workflow (#7) * Add test workflow * Don't use matrix * Try inline cross * Pin runner * Directly download release via CLI * Add caching * Extract to bash file * Last tweaks * Add support for 8th (#1) Add support for 8th --------- Co-authored-by: Erik Schierboom <[email protected]> * add wren support (#8) * Trigger lines of code counter redeploy (#9) * Add LFE support * Revert formatting changes to README.md * Fix formatting again * Remove scheme submodule * Add quotes * Update lfe.lfe * Increment comment count * Decrement blank count --------- Co-authored-by: Erik Schierboom <[email protected]> Co-authored-by: Glenn Jackman <[email protected]>
- Loading branch information
1 parent
c3d4a35
commit 48b5ae3
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
; 15 lines 4 code 5 comments 6 blanks | ||
|
||
(defmodule my-code | ||
(export (hello-world 0))) | ||
|
||
;;; Commentary: | ||
;; Provides helper functions | ||
|
||
;;; Code | ||
|
||
(defun pi () 3.14) ; a constant for Π not exported | ||
|
||
(defun hello-world () "Hello, World!") | ||
|
||
;;; lfe.lfe ends here |