Var is

From StarLogo Nova Wiki
Revision as of 18:43, 16 August 2023 by FuzzyBot (talk | contribs) (Updating to match new version of source page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Other languages:
The Var Is Block

Creates a variable with a specified name.

Usage

Creates a variable (a place to store data) in the agent's context with a specified name. You can rename the variable by selecting the “name” text and typing over it. You can also specify what type of variable using the drop down menu. The variable only exists in the stack of code where it is created.

Syntax

Inputs in this block:

  1. a name for the variable
  2. a type of variable from the dropdown menu
  3. a value to assign to the variable

Example

Var Is example gif
Var Is example code

The code above creates variables to draw stripes across the screen. Since it is useful to keep track of the current y-value to draw each stripe, the ‘var’ block has been used to declare this variable. Since the value of the variable needs to change in order to change the location of the agent drawing the stripes, the ‘set to’ block is used to set the variable to the current y-value of the agent.