Slide 1 of 37

Hello, World

proc main(): void {
	echo "it works"
}
Every Hive program starts at proc main(): void, in the file handed to `hive run` or `hive build`. echo prints a value and appends a newline, converting whatever it is given to text the way it would be shown.
← PrevNext →