llms.txt
Skip to main content

Move Basics

This chapter covers the foundations of the Move language: the syntax, the type system, and the concepts that every Move program is built from. It focuses on the language itself and mostly sets the blockchain aside - everything here applies to any Move program, and the features specific to storage and Sui are covered right after, starting with the Object Model chapter.

The sections build on one another and are meant to be read in order:

Every code sample in this chapter comes from a compiling, tested package. Most samples are excerpts placed inside test functions, so you can copy any of them into the package created in the Hello World chapter and run them with sui move test.

llms.txt