跳到主要内容
知仓学习社ZHICANG

creating-julia-app

Use when you create a CLI written in Julia packages or MCP servers

不碰外部(只输出文字)无严重或高危命中hashgraph-online/awesome-codex-plugins

它会碰到什么

扫了多少1 个文本文件,1 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

Creating a Julia app

Apps are Julia packages that are intended to be run as "standalone programs" (by e.g. typing the name of the app in the terminal possibly together with some arguments or flags/options). This is in contrast to most Julia packages that are used as "libraries" and are loaded by other files or in the Julia REPL.

A Julia app is structured similar to a standard Julia library with the following additions:

A @main entry point in the package module (see the Julia help on @main for details)

An [apps] section in the Project.toml file listing the executable names that the package provides.

A very simple example of an app that prints the reversed input arguments would be:

# src/MyReverseApp.jl
module MyReverseApp

function (@main)(ARGS)
    for arg in ARGS
        print(stdout, reverse(arg), " ")
    end
    return
end

end # module
# Project.toml

# standard fields here

[apps]
reverse = {}

The empty table {} is to allow for giving metadata about the app.

After installing this app one could run:

$ ~/.julia/bin/reverse some input string
 emos tupni gnirts

directly in the terminal. See the following link to learn more:

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

它属于哪个仓库

星标★ 1,027
本站分层T1
该仓技能数1910
原文件路径plugins/AtelierArith/atelier-arith-julia-development-skills/skills/creating-julia-app/SKILL.md

同一个仓库里的其他技能

看这个仓库的全部 1910 个技能