> ## Documentation Index
> Fetch the complete documentation index at: https://docs.arc.cdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# arc:include

> 他のファイルのArcScript をインラインでインクルードし、パース時にキーワードを指定したファイルの内容に置き換えます。

export const siteNameShort = "Arc";

`arc:include` キーワードを使用して、他のファイルから{siteNameShort}Script をインクルードします。他のプログラミング言語における従来のincludes と同様に、`arc:include` は**file** パラメータで指定されたファイルの内容に置き換えられます。

## パラメータ

* **file | document**：含めるファイルの名前。
* **language**：ファイルの書かれている言語。

## アトリビュートの制御

None

## 例

重複なしにそれぞれのスクリプトの特定のアトリビュート（`companyname` と`copyright`）をインポートします：

```xml theme={null}
<arc:include file="globals.rsb"/> 
[companyname] 
[copyright] 
<arc:call ...>
```
