Script Library: 1249 scripts
 

dbg-select-file.r

REBOL [ File: %dbg-select-file.r Date: 03-Jul-2026 Title: "GUI for dbg Rebol file" Version: 1 Author: "JLM" Purpose: { GUI to debug Rebol File using dbg. } library: [ level: 'beginner platform: none type: [package tool] domain: [debug testing] tested-under: [view 2.7.8 on "Ubuntu 18.04"] support: none license: none see-also: none ] ] dbg: do %dbg.r forever [ file: request-file/only/title/keep "Script to debug" "Load" unless none? file [ change-dir pick split-path file 1 dbg/debug/run file ] dbg/undebug ]
halt ;; to terminate script if DO'ne from webpage
<< db.r · dbg.r >>
Notes
  • This script is a package. Details of files in the package: dbg-select-file.r.
    You can download this package with this line of REBOL:
    do/args http://www.rebol.org/library/public/repack-solo.r ["dbg-select-file.r" %install-folder]