Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.ficcaurora.xyz/llms.txt

Use this file to discover all available pages before exploring further.

行内代码

若要将某个 wordphrase 标注为代码,请用反引号(`)包裹。
To denote a `word` or `phrase` as code, enclose it in backticks (`).

代码块

使用围栏代码块:用三个反引号包裹代码,并在开头反引号后写明代码片段的编程语言以启用语法高亮。必要时,你也可以在语言后添加文件名。
HelloWorld.java
class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}
```java HelloWorld.java
class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}
```