Rename regex module
This commit is contained in:
parent
9e9903429e
commit
1bfe73f77a
|
@ -12,7 +12,7 @@
|
||||||
"provides": {
|
"provides": {
|
||||||
"IUtils": "lib/IUtils.rakumod",
|
"IUtils": "lib/IUtils.rakumod",
|
||||||
"IUtils::IDEMode": "lib/IUtils/IDEMode.rakumod",
|
"IUtils::IDEMode": "lib/IUtils/IDEMode.rakumod",
|
||||||
"IUtils::Comments": "lib/IUtils/Comments.rakumod"
|
"IUtils::Regexs": "lib/IUtils/Regexes.rakumod"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"iutils": "bin/iutils"
|
"iutils": "bin/iutils"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env raku
|
#!/usr/bin/env raku
|
||||||
use v6.d;
|
use v6.d;
|
||||||
use IUtils;
|
use IUtils;
|
||||||
use IUtils::Comments;
|
use IUtils::Regexes;
|
||||||
|
|
||||||
#| Execute the tests in an idris project
|
#| Execute the tests in an idris project
|
||||||
multi MAIN(
|
multi MAIN(
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
unit module IUtils::Comments;
|
unit module IUtils::Regexes;
|
||||||
|
|
||||||
my token comment-start { \- \- }
|
my token comment-start { \- \- }
|
||||||
my token type {
|
my token type {
|
Loading…
Reference in a new issue