mirror of https://github.com/XAMPPRocky/tokei
Add BQN support (#1151)
This commit is contained in:
parent
320d1d2c58
commit
3688ee5cdb
|
|
@ -169,6 +169,12 @@
|
|||
"quotes": [["\\\"", "\\\""], ["'", "'"]],
|
||||
"extensions": ["bb", "bbclass", "bbappend", "inc", "conf"]
|
||||
},
|
||||
"Bqn": {
|
||||
"name": "BQN",
|
||||
"line_comment": ["#"],
|
||||
"extensions": ["bqn"],
|
||||
"quotes": [["\\\"", "\\\""], ["'", "'"]],
|
||||
},
|
||||
"BrightScript": {
|
||||
"quotes": [["\\\"", "\\\""]],
|
||||
"line_comment": ["'", "REM"],
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
# 10 lines 3 code 3 comments 4 blanks
|
||||
|
||||
|
||||
256=2⋆8
|
||||
|
||||
# Comment
|
||||
<⟜'a'⊸/"Big Questions Notation"
|
||||
|
||||
# A magic square of length ⊢
|
||||
MS ← (↕-⌈∘÷⟜2)(⊣⌽˘⌾⍉⌽˘)⋈˜⥊⟜↕ט
|
||||
Loading…
Reference in New Issue