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.
- Loading branch information
1 parent
7cfafa6
commit 9527124
Showing
2 changed files
with
34 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
NB. 27 lines 16 code 4 comments 7 blanks | ||
|
||
foo=: 5 NB. uncounted comment | ||
|
||
NB. single line comment | ||
bar=: 'A string with ''quotes''' | ||
|
||
ed=: 0 : 0 | ||
explicit defined string | ||
) | ||
|
||
ed2=: 3 :0 | ||
+: y NB. uncounted comment inside explicit definition | ||
) | ||
|
||
dd1=: {{)n | ||
explicit defined string using direct definitions | ||
}} | ||
|
||
Note | ||
multi line comment with the `Note` keyword | ||
cannot be identified at the moment | ||
) | ||
|
||
NB. another single line comment | ||
NB. consecutive comments | ||
dd2=: {{ x * y }} + 8 |