#run { w := compiler_create_workspace(); bo := get_build_options(w); bo.output_executable_name = "droplets"; import_paths: [..]string; for bo.import_path array_add(*import_paths, it); array_add(*import_paths, "libs"); bo.import_path = import_paths; set_build_options(bo, w); add_build_file("main.jai", w); add_build_file("ring.jai", w); set_build_options_dc(.{do_output=false}); } #import "Basic"; #import "Compiler";