This file is indexed.

/usr/share/doc/gauche-gtk/examples/gtk-tutorial/base.scm is in gauche-gtk 0.6~pre1+git20121223-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
;;
;; Simple example, ported from the one in Gtk+2.0 tutorial.
;;
;; $Id: base.scm,v 1.2 2007/01/13 01:36:30 maruska Exp $

(use gtk)

(define (main args)
  (gtk-init args)
  (let1 window (gtk-window-new GTK_WINDOW_TOPLEVEL)
    (gtk-widget-show window))
  (gtk-main)
  0)