缝
通过将其他程序“拼接”在一起来创建程序的脚本语言。 BASH等其他语言的替代方法,其重点是简化“正确程序”的编写。
预览
# this is a comment
$echo Hello, World
# variables
$set name Fred
$echo Hello $name
# command substitution
$set arch (uname -m)
# arrays
$setarray names args Fred Lisa Joey
$echo Hello $e