Hello World

Compile using blc my-file-name.bl and run ./out.

// Main function as the program entry point.
main :: fn () s32 {
	// Call the print function.
	print("Hello world!\n");

	// Return OK state number.
	return 0;
}