Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.217.15
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
guile /
3.0 /
rnrs /
Delete
Unzip
Name
Size
Permission
Date
Action
arithmetic
[ DIR ]
drwxr-xr-x
2025-02-07 15:04
io
[ DIR ]
drwxr-xr-x
2025-02-07 15:04
records
[ DIR ]
drwxr-xr-x
2025-02-07 15:04
base.scm
12.37
KB
-rw-r--r--
2022-02-10 20:40
bytevectors.scm
3.3
KB
-rw-r--r--
2022-02-10 20:40
conditions.scm
4.38
KB
-rw-r--r--
2022-02-10 20:40
control.scm
986
B
-rw-r--r--
2022-02-10 20:40
enums.scm
5.33
KB
-rw-r--r--
2022-02-10 20:40
eval.scm
1.4
KB
-rw-r--r--
2022-02-10 20:40
exceptions.scm
1.1
KB
-rw-r--r--
2022-02-10 20:40
files.scm
3.33
KB
-rw-r--r--
2022-02-10 20:40
hashtables.scm
6.34
KB
-rw-r--r--
2022-02-10 20:40
lists.scm
1.98
KB
-rw-r--r--
2022-02-10 20:40
mutable-pairs.scm
969
B
-rw-r--r--
2022-02-10 20:40
mutable-strings.scm
989
B
-rw-r--r--
2022-02-10 20:40
programs.scm
964
B
-rw-r--r--
2022-02-10 20:40
r5rs.scm
1.21
KB
-rw-r--r--
2022-02-10 20:40
sorting.scm
1.17
KB
-rw-r--r--
2022-02-10 20:40
syntax-case.scm
1.85
KB
-rw-r--r--
2022-02-10 20:40
unicode.scm
2.29
KB
-rw-r--r--
2022-02-10 20:40
Save
Rename
;;; eval.scm --- The R6RS `eval' library ;; Copyright (C) 2010 Free Software Foundation, Inc. ;; ;; This library is free software; you can redistribute it and/or ;; modify it under the terms of the GNU Lesser General Public ;; License as published by the Free Software Foundation; either ;; version 3 of the License, or (at your option) any later version. ;; ;; This library is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; Lesser General Public License for more details. ;; ;; You should have received a copy of the GNU Lesser General Public ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA (library (rnrs eval (6)) (export eval environment) (import (only (guile) eval make-module module-uses beautify-user-module! set-module-uses!) (rnrs base (6)) (rnrs io simple (6)) (rnrs lists (6))) (define (environment . import-specs) (let ((module (make-module)) (needs-purify? (not (member '(guile) import-specs)))) (beautify-user-module! module) (for-each (lambda (import-spec) (eval (list 'import import-spec) module)) import-specs) (if needs-purify? (set-module-uses! module (cdr (module-uses module)))) module)) )