Skip to content

Using The Terminal

Edit this page on GitHub

One of the most important debugging tools available to you is the terminal, which allows you to print text to your computer from the brain.

print and println

The easiest way to send some data to the terminal in a vexide program is through the print family of macros. You might recall println from our “Hello World” example:

println!("Hello World!");