Compile using blc my-file-name.bl and run ./out.
blc my-file-name.bl
./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; }