Skip to content
Snippets Groups Projects
Select Git revision
  • dev default protected
  • release/1.10.0
  • emacs-version
  • alan@lltz_codegen/stability_and_optimizations
  • tpm/testing-views
  • tpm/functions
  • tpm/make-public-public
  • tpm/one-or-two-entrypoints
  • release/1.8.1
  • rinderknecht@ts_decoder
  • krendelhoff/#1997-build-system-driver
  • heitor.toledo/#1999-#import-migration-tool
  • heitor.toledo/#1999-#import-migration-tool-backup
  • tpm/decorators
  • heitor.toledo/#1998-deprecate-#import
  • cameligo2
  • krendlhoff/#1997-build-system-driver
  • rinderknecht@ctypes_foreign
  • rinderknecht@ts_ast
  • tpm/branching
  • 1.10.0
  • 1.9.2
  • 1.9.1
  • 1.9.0
  • 1.8.2
  • 1.8.1
  • 1.6.0
  • 1.5.0
  • 1.4.0
  • 1.3.0
  • 1.2.0
  • 1.1.0
  • 1.0.0
  • 0.73.0
  • 0.72.0
  • 0.71.1
  • 0.1.2023080401
  • 0.1.20230804
  • 0.0.20230804
  • 0.71.0
40 results

include.md

Code owners
Assign users and groups as approvers for specific file changes. Learn more.
include.md 1.45 KiB
id: include
title: Including Other Contracts

import Syntax from '@theme/Syntax';

Let us say that we have a contract that is getting a too large. If it has a modular structure, you might find it useful to use the #include statement to split the contract up over multiple files.

You take the code that you want to include and put it in a separate file, for example included.ligo:


// Demonstrate PascaLIGO inclusion statements, see includer.ligo

const foo : int = 144
// Demonstrate CameLIGO inclusion statements, see includer.mligo

let foo : int = 144
// Demonstrate ReasonLIGO inclusion statements, see includer.religo

let foo : int = 144;
// Demonstrate JsLIGO inclusion statements, see includer.jsligo

const foo: int = 144;

And then you can include this code using the #include statement like so:

#include "included.ligo"

const bar : int = foo
#include "included.mligo"

let bar : int = foo
#include "included.religo"

let bar : int = foo;
#include "included.jsligo"

const bar: int = foo;