mirror of
https://github.com/RubyMetric/chsrc
synced 2025-07-16 12:17:27 +08:00
23 lines
612 B
PowerShell
23 lines
612 B
PowerShell
# ---------------------------------------------------------------
|
|
# File Name : run.ps1
|
|
# File Authors : Aoran Zeng <ccmywish@qq.com>
|
|
# Contributors : Nul None <nul@none.org>
|
|
# Created On : <2025-07-12>
|
|
# Last Modified : <2025-07-13>
|
|
#
|
|
# Run rawstr4c.raku script
|
|
#
|
|
# Usage:
|
|
#
|
|
# 用户必须在代码根目录中运行此文件
|
|
#
|
|
# $PREFIX\bin\run.ps1 [--debug] <Markdown.md>
|
|
#
|
|
# $PREFIX\bin\run.ps1 [--debug] <Dir>
|
|
# ---------------------------------------------------------------
|
|
|
|
$PREFIX = "tool/rawstr4c"
|
|
|
|
# -I 选项必须在文件前面
|
|
raku -I $PREFIX\lib $PREFIX\rawstr4c.raku $args
|