/
niceSOFT
/
guile
ОбзорДокументацияВойти
/
niceSOFT
/
guile
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
guile/
examples/scripts/
..
README

Fix typos throughout codebase.

3 года назад
fact

* scripts/README, scripts/hello.scm, safe/untrusted.scm, safe/evil.scm, safe/README, modules/README, modules/main, modules/module-0.scm, modules/module-1.scm, modules/module-2.scm: Minor cleanup.

25 лет назад
hello

Fix typos throughout codebase.

3 года назад
simple-hello.scm

* scripts/README, scripts/hello.scm, safe/untrusted.scm, safe/evil.scm, safe/README, modules/README, modules/main, modules/module-0.scm, modules/module-1.scm, modules/module-2.scm: Minor cleanup.

25 лет назад
README
-*- outline -*-
 
* Overview
 
This directory includes examples which show how to write scripts using
Guile.
 
The descriptions below assume that you have a working copy of Guile
installed and available with the standard installation prefix
`/usr/local'.
 
* Included Examples
 
 
** simple-hello.scm
 
The simplest "Hello World!" program for Guile. Run it like this:
 
$ guile -s simple-hello.scm
 
** hello
 
An advanced version of the script above, with command line handling
for the important options --help and --version. Run it like this:
 
./hello
 
or
 
guile -s hello
 
** fact
 
Command-line factorial calculator. Run it like this:
 
./fact 5
 
to calculate the factorial of 5.