//#!/usr/local/bin/jai /** adapt this path */ #import "Basic"()(MEMORY_DEBUGGER = MEMORY_DEBUGGER_ENABLED); #import "Compiler"; MEMORY_DEBUGGER_ENABLED :: false; #run { #if MEMORY_DEBUGGER_ENABLED defer report_memory_leaks(); log("Hello, Sailor!"); // Run this with `jai main.jai` or if you have the // shebang set up: `./main.jai` } #run { set_build_options_dc(.{ do_output = false }); target_options := get_build_options(-1); target_options.text_output_flags = 0; } main :: () {}