--- sidebar_position: 2 --- import { SquiggleEditor } from "../../src/components/SquiggleEditor"; # Squiggle Language The squiggle language has a very simple syntax. The best way to get to understand it is by simply looking at examples. ## Basic Language As an example: Squiggle can declare variables (`value_of_work = 10 to 70`) and declare exports (the lone `value_of_work` line). Variables can be used later in a squiggle program and even in other notebooks! An export is rendered to the output view so you can see your result. the exports can be expressions, such as: ## Functions Squiggle supports functions, including the rendering of functions: