mirror of https://github.com/XAMPPRocky/tokei
Add support for Uiua language (#1191)
This commit is contained in:
parent
837fe44f28
commit
563f15395d
|
|
@ -1781,6 +1781,11 @@
|
|||
"quotes": [["\\\"", "\\\""]],
|
||||
"extensions": ["typ"]
|
||||
},
|
||||
"Uiua": {
|
||||
"line_comment": ["#"],
|
||||
"quotes": [["\\\"", "\\\""]],
|
||||
"extensions": ["ua"]
|
||||
},
|
||||
"UMPL": {
|
||||
"line_comment": ["!"],
|
||||
"quotes": [["`", "`"]],
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
# 9 lines 5 code 3 comments 1 blanks
|
||||
# Calculate factorial
|
||||
# Result ? Number
|
||||
Factorial ← |1 (
|
||||
×. # Line comment
|
||||
)
|
||||
|
||||
FactorialThree ← Factorial 3 # Another line comment
|
||||
FactorialFour ← Factorial 4
|
||||
Loading…
Reference in New Issue