Added a space between header indicator and label

This commit is contained in:
Justin Ethier 2016-10-04 00:18:21 -04:00
parent dae79a1710
commit 6374c858d5
14 changed files with 241 additions and 241 deletions

View file

@ -157,45 +157,45 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`zero?`](#zero) - [`zero?`](#zero)
#abs # abs
(abs num) (abs num)
#and # and
(and {test1} ...) (and {test1} ...)
#any # any
(any pred lst) (any pred lst)
#append # append
(append list ...) (append list ...)
#assoc # assoc
(assoc obj alist) (assoc obj alist)
(assoc obj alist compare) (assoc obj alist compare)
#assq # assq
(assq obj alist) (assq obj alist)
#assv # assv
(assv obj alist) (assv obj alist)
#begin # begin
(begin {expression or definition} ...) (begin {expression or definition} ...)
#boolean=? # boolean=?
(boolean=? b1 b2 ...) (boolean=? b1 b2 ...)
#bytevector-copy # bytevector-copy
(bytevector-copy bytevector) (bytevector-copy bytevector)
@ -203,7 +203,7 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(bytevector-copy bytevector start end) (bytevector-copy bytevector start end)
#bytevector-copy! # bytevector-copy!
(bytevector-copy! to at from) (bytevector-copy! to at from)
@ -211,85 +211,85 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(bytevector-copy! to at from start end) (bytevector-copy! to at from start end)
#call-with-current-continuation # call-with-current-continuation
(call-with-current-continuation proc) (call-with-current-continuation proc)
#call-with-port # call-with-port
(call-with-port port proc) (call-with-port port proc)
#call-with-values # call-with-values
(call-with-values producer consumer) (call-with-values producer consumer)
#call/cc # call/cc
(call/cc proc) (call/cc proc)
#case # case
(case {key} {clause1} {clause2} ...) (case {key} {clause1} {clause2} ...)
#ceiling # ceiling
(ceiling z) (ceiling z)
#char<=? # char<=?
(char<=? c1 c2 c3 ...) (char<=? c1 c2 c3 ...)
#char<? # char<?
(char<? c1 c2 c3 ...) (char<? c1 c2 c3 ...)
#char=? # char=?
(char=? c1 c2 c3 ...) (char=? c1 c2 c3 ...)
#char>=? # char>=?
(char>=? c1 c2 c3 ...) (char>=? c1 c2 c3 ...)
#char>? # char>?
(char>? c1 c2 c3 ...) (char>? c1 c2 c3 ...)
#complex? # complex?
(complex? obj) (complex? obj)
#cond # cond
(cond {clause1} {clause2} ...) (cond {clause1} {clause2} ...)
#cond-expand # cond-expand
(cond-expand {ce-clause2} {ce-clause2} ...) (cond-expand {ce-clause2} {ce-clause2} ...)
#current-error-port # current-error-port
(current-error-port) (current-error-port)
#current-input-port # current-input-port
(current-input-port) (current-input-port)
#current-output-port # current-output-port
(current-output-port) (current-output-port)
#define-record-type # define-record-type
(define-record-type {name} (define-record-type {name}
{constructor} {pred} {field} ...) {constructor} {pred} {field} ...)
#denominator # denominator
(denominator n) (denominator n)
#do # do
(do (({variable1} {init1} {step1}) (do (({variable1} {init1} {step1})
@ -299,93 +299,93 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
{command} ...) {command} ...)
#dynamic-wind # dynamic-wind
(dynamic-wind before thunk after) (dynamic-wind before thunk after)
#eof-object # eof-object
(eof-object) (eof-object)
#error # error
(error message obj ...) (error message obj ...)
#even? # even?
(even? num) (even? num)
#every # every
(every pred lst) (every pred lst)
#exact # exact
(exact? num) (exact? num)
#exact-integer? # exact-integer?
(exact-integer? num) (exact-integer? num)
#exact? # exact?
(exact? num) (exact? num)
#expt # expt
(expt z1 z2) (expt z1 z2)
#features # features
(features) (features)
#floor # floor
(floor z) (floor z)
#floor-quotient # floor-quotient
(floor-quotient n m) (floor-quotient n m)
#floor-remainder # floor-remainder
(floor-remainder n m) (floor-remainder n m)
#floor/ # floor/
(floor/ n m) (floor/ n m)
#flush-output-port # flush-output-port
(flush-output-port) (flush-output-port)
(flush-output-port port) (flush-output-port port)
#foldl # foldl
(foldl func accum lst) (foldl func accum lst)
#foldr # foldr
(foldr func end lst) (foldr func end lst)
#for-each # for-each
(for-each proc list1 list2 ...) (for-each proc list1 list2 ...)
#gcd # gcd
(gcd n1 ...) (gcd n1 ...)
#get-output-bytevector # get-output-bytevector
(get-output-bytevector port) (get-output-bytevector port)
#get-output-string # get-output-string
(get-output-string port) (get-output-string port)
#guard # guard
(guard ({variable} (guard ({variable}
@ -393,263 +393,263 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
{body}) {body})
#inexact # inexact
(inexact z) (inexact z)
#inexact? # inexact?
(inexact? num) (inexact? num)
#input-port-open? # input-port-open?
(input-port-open? port) (input-port-open? port)
#input-port? # input-port?
(input-port? port) (input-port? port)
#lcm # lcm
(lcm n1 ...) (lcm n1 ...)
#let # let
(let {bindings} {body}) (let {bindings} {body})
#let* # let*
(let* {bindings} {body}) (let* {bindings} {body})
#let*-values # let*-values
(let*-values {mv binding spec} {body}) (let*-values {mv binding spec} {body})
#let-values # let-values
(let-values {mv binding spec} {body}) (let-values {mv binding spec} {body})
#letrec # letrec
(letrec {bindings} {body}) (letrec {bindings} {body})
#letrec* # letrec*
(letrec* {bindings} {body}) (letrec* {bindings} {body})
#list # list
(list obj ...) (list obj ...)
#list-copy # list-copy
(list-copy lst) (list-copy lst)
#list-ref # list-ref
(list-ref lst k) (list-ref lst k)
#list-set! # list-set!
(list-set! lst k obj) (list-set! lst k obj)
#list-tail # list-tail
(list-tail lst k) (list-tail lst k)
#list? # list?
(list? o) (list? o)
#make-constructor # make-constructor
(make-constructor make name) (make-constructor make name)
#make-getter # make-getter
(make-getter sym name idx) (make-getter sym name idx)
#make-list # make-list
(make-list k ) (make-list k )
(make-list k fill) (make-list k fill)
#make-parameter # make-parameter
(make-parameter init) (make-parameter init)
(make-parameter init converter) (make-parameter init converter)
#make-setter # make-setter
(make-setter sym name idx) (make-setter sym name idx)
#make-string # make-string
(make-string k) (make-string k)
(make-string k fill) (make-string k fill)
#make-type-predicate # make-type-predicate
(make-type-predicate pred name) (make-type-predicate pred name)
#map # map
(map proc list1 list2 ...) (map proc list1 list2 ...)
#max # max
(max x1 x2 ...) (max x1 x2 ...)
#member # member
(member obj lst) (member obj lst)
(member obj lst compare) (member obj lst compare)
#memq # memq
(memq obj lst) (memq obj lst)
#memv # memv
(memv obj lst) (memv obj lst)
#min # min
(min x1 x2 ...) (min x1 x2 ...)
#modulo # modulo
(modulo a b) (modulo a b)
#negative? # negative?
(negative? n) (negative? n)
#newline # newline
(newline) (newline)
(newline port) (newline port)
#not # not
(not x) (not x)
#numerator # numerator
(numerator n) n) (numerator n) n)
#odd? # odd?
(odd? num) (odd? num)
#open-input-bytevector # open-input-bytevector
(open-input-bytevector bv) (open-input-bytevector bv)
#open-input-string # open-input-string
(open-input-string string) (open-input-string string)
#open-output-bytevector # open-output-bytevector
(open-output-bytevector open-output-string) (open-output-bytevector open-output-string)
#open-output-string # open-output-string
(open-output-string) (open-output-string)
#or # or
(or {test1} ...) (or {test1} ...)
#output-port-open? # output-port-open?
(output-port-open? port) (output-port-open? port)
#output-port? # output-port?
(output-port? obj) (output-port? obj)
#parameterize # parameterize
(parameterize (({param1} {value1}) ...) (parameterize (({param1} {value1}) ...)
{body}) {body})
#positive? # positive?
(positive? n) (positive? n)
#quasiquote # quasiquote
(quasiquote {qq template}) (quasiquote {qq template})
#quotient # quotient
(quotient x y) (quotient x y)
#raise # raise
(raise obj) (raise obj)
#raise-continuable # raise-continuable
(raise-continuable obj) (raise-continuable obj)
#rational? # rational?
(rational? obj) (rational? obj)
#read-line # read-line
(read-line) (read-line)
(read-line port) (read-line port)
#read-string # read-string
(read-string k) (read-string k)
(read-string k port) (read-string k port)
#receive # receive
(receive {formals} {expression} {body}) (receive {formals} {expression} {body})
#record? # record?
(record? obj) (record? obj)
#remainder # remainder
(remainder num1 num2) (remainder num1 num2)
#reverse # reverse
(reverse lst) (reverse lst)
#round # round
(round z) (round z)
#slot-set! # slot-set!
(slot-set! name obj idx val) (slot-set! name obj idx val)
#square # square
(square z) (square z)
#string # string
(string char ...) (string char ...)
#string->list # string->list
(string->list string) (string->list string)
@ -657,7 +657,7 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(string->list string start end) (string->list string start end)
#string->utf8 # string->utf8
(string->utf8 string) (string->utf8 string)
@ -665,7 +665,7 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(string->utf8 string start end) (string->utf8 string start end)
#string->vector # string->vector
(string->vector string) (string->vector string)
@ -673,7 +673,7 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(string->vector string start end) (string->vector string start end)
#string-copy # string-copy
(string-copy string) (string-copy string)
@ -681,7 +681,7 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(string-copy string end) (string-copy string end)
#string-copy! # string-copy!
(string-copy! to at from) (string-copy! to at from)
@ -689,7 +689,7 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(string-copy! to at from start end) (string-copy! to at from start end)
#string-fill! # string-fill!
(string-fill! str fill) (string-fill! str fill)
@ -697,67 +697,67 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(string-fill! str fill start end) (string-fill! str fill start end)
#string-for-each # string-for-each
(string-for-each proc string1 string2 ...) (string-for-each proc string1 string2 ...)
#string-map # string-map
(string-map proc string1 string2 ...) (string-map proc string1 string2 ...)
#string<=? # string<=?
(string<=? str1 str2) (string<=? str1 str2)
#string<? # string<?
(string<? str1 str2) (string<? str1 str2)
#string=? # string=?
(string=? str1 str2) (string=? str1 str2)
#string>=? # string>=?
(string>=? str1 str2) (string>=? str1 str2)
#string>? # string>?
(string>? str1 str2) (string>? str1 str2)
#symbol=? # symbol=?
(symbol=? symbol1 symbol2 symbol3 ...) (symbol=? symbol1 symbol2 symbol3 ...)
#syntax-error # syntax-error
(syntax-error {message} {args} ...) (syntax-error {message} {args} ...)
#truncate # truncate
(truncate z) (truncate z)
#truncate-quotient # truncate-quotient
(truncate-quotient quotient) (truncate-quotient quotient)
#truncate-remainder # truncate-remainder
(truncate-remainder remainder) (truncate-remainder remainder)
#truncate/ # truncate/
(truncate/ n m) (truncate/ n m)
#type-slot-offset # type-slot-offset
(type-slot-offset name sym) (type-slot-offset name sym)
#unless # unless
(unless {test} {expression1} {expression2} ...) (unless {test} {expression1} {expression2} ...)
#utf8->string # utf8->string
(utf8->string bytevector) (utf8->string bytevector)
@ -765,15 +765,15 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(utf8->string bytevector start end) (utf8->string bytevector start end)
#values # values
(values obj ...) (values obj ...)
#vector # vector
(vector obj ...) (vector obj ...)
#vector->list # vector->list
(vector->list vector) (vector->list vector)
@ -781,7 +781,7 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(vector->list vector start end) (vector->list vector start end)
#vector->string # vector->string
(vector->string vector) (vector->string vector)
@ -789,11 +789,11 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(vector->string vector start end) (vector->string vector start end)
#vector-append # vector-append
(vector-append vector ...) (vector-append vector ...)
#vector-copy # vector-copy
(vector-copy vector) (vector-copy vector)
@ -801,7 +801,7 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(vector-copy vector start end) (vector-copy vector start end)
#vector-copy! # vector-copy!
(vector-copy! to at from) (vector-copy! to at from)
@ -809,7 +809,7 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(vector-copy! to at from start end) (vector-copy! to at from start end)
#vector-fill! # vector-fill!
(vector-fill! vector fill) (vector-fill! vector fill)
@ -817,35 +817,35 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
(vector-fill! vector fill start end) (vector-fill! vector fill start end)
#vector-for-each # vector-for-each
(vector-for-each proc vector1 vector2 ...) (vector-for-each proc vector1 vector2 ...)
#vector-map # vector-map
(vector-map proc vector1 vector2 ...) (vector-map proc vector1 vector2 ...)
#when # when
(when {test} {expression1} {expression2} ...) (when {test} {expression1} {expression2} ...)
#with-exception-handler # with-exception-handler
(with-exception-handler handler thunk) (with-exception-handler handler thunk)
#write-char # write-char
(write-char char) (write-char char)
(write-char char port) (write-char char port)
#write-string # write-string
(write-string string) (write-string string)
(write-string string port) (write-string string port)
#zero? # zero?
(zero? n) (zero? n)

View file

@ -6,7 +6,7 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`case-lambda`](#case-lambda) - [`case-lambda`](#case-lambda)
#case-lambda # case-lambda
(case-lambda {clause} ...) (case-lambda {clause} ...)

View file

@ -27,91 +27,91 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`string-foldcase`](#string-foldcase) - [`string-foldcase`](#string-foldcase)
- [`string-upcase`](#string-upcase) - [`string-upcase`](#string-upcase)
#char-alphabetic? # char-alphabetic?
(char-alphabetic? c) (char-alphabetic? c)
#char-ci<=? # char-ci<=?
(char-ci<=? c1 c2 . cs) (char-ci<=? c1 c2 . cs)
#char-ci<? # char-ci<?
(char-ci<? c1 c2 . cs) (char-ci<? c1 c2 . cs)
#char-ci=? # char-ci=?
(char-ci=? c1 c2 . cs) (char-ci=? c1 c2 . cs)
#char-ci>=? # char-ci>=?
(char-ci>=? c1 c2 . cs) (char-ci>=? c1 c2 . cs)
#char-ci>? # char-ci>?
(char-ci>? c1 c2 . cs) (char-ci>? c1 c2 . cs)
#char-downcase # char-downcase
(char-downcase c) (char-downcase c)
#char-foldcase # char-foldcase
(char-foldcase c) (char-foldcase c)
#char-lower-case? # char-lower-case?
(char-lower-case? c) (char-lower-case? c)
#char-numeric? # char-numeric?
(char-numeric? c) (char-numeric? c)
#char-upcase # char-upcase
(char-upcase c) (char-upcase c)
#char-upper-case? # char-upper-case?
(char-upper-case? c) (char-upper-case? c)
#char-whitespace? # char-whitespace?
(char-whitespace? c) (char-whitespace? c)
#digit-value # digit-value
(digit-value c) (digit-value c)
#string-ci<=? # string-ci<=?
(string-ci<=? s1 s2) (string-ci<=? s1 s2)
#string-ci<? # string-ci<?
(string-ci<? s1 s2) (string-ci<? s1 s2)
#string-ci=? # string-ci=?
(string-ci=? s1 s2) (string-ci=? s1 s2)
#string-ci>=? # string-ci>=?
(string-ci>=? s1 s2) (string-ci>=? s1 s2)
#string-ci>? # string-ci>?
(string-ci>? s1 s2) (string-ci>? s1 s2)
#string-downcase # string-downcase
(string-downcase str) (string-downcase str)
#string-foldcase # string-foldcase
(string-foldcase str) (string-foldcase str)
#string-upcase # string-upcase
(string-upcase str) (string-upcase str)

View file

@ -11,27 +11,27 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`make-rectangular`](#make-rectangular) - [`make-rectangular`](#make-rectangular)
- [`real-part`](#real-part) - [`real-part`](#real-part)
#angle # angle
(angle z) (angle z)
#imag-part # imag-part
(imag-part x) (imag-part x)
#magnitude # magnitude
(magnitude z) (magnitude z)
#make-polar # make-polar
(make-polar x y) (make-polar x y)
#make-rectangular # make-rectangular
(make-rectangular x y) (make-rectangular x y)
#real-part # real-part
(real-part x) (real-part x)

View file

@ -34,99 +34,99 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`cdddar`](#cdddar) - [`cdddar`](#cdddar)
- [`cddddr`](#cddddr) - [`cddddr`](#cddddr)
#caaar # caaar
(caaar list) (caaar list)
#caadr # caadr
(caadr list) (caadr list)
#cadar # cadar
(cadar list) (cadar list)
#caddr # caddr
(caddr list) (caddr list)
#cdaar # cdaar
(cdaar list) (cdaar list)
#cdadr # cdadr
(cdadr list) (cdadr list)
#cddar # cddar
(cddar list) (cddar list)
#cdddr # cdddr
(cdddr list) (cdddr list)
#caaaar # caaaar
(caaaar list) (caaaar list)
#caaadr # caaadr
(caaadr list) (caaadr list)
#caadar # caadar
(caadar list) (caadar list)
#caaddr # caaddr
(caaddr list) (caaddr list)
#cadaar # cadaar
(cadaar list) (cadaar list)
#cadadr # cadadr
(cadadr list) (cadadr list)
#caddar # caddar
(caddar list) (caddar list)
#cadddr # cadddr
(cadddr list) (cadddr list)
#cdaaar # cdaaar
(cdaaar list) (cdaaar list)
#cdaadr # cdaadr
(cdaadr list) (cdaadr list)
#cdadar # cdadar
(cdadar list) (cdadar list)
#cdaddr # cdaddr
(cdaddr list) (cdaddr list)
#cddaar # cddaar
(cddaar list) (cddaar list)
#cddadr # cddadr
(cddadr list) (cddadr list)
#cdddar # cdddar
(cdddar list) (cdddar list)
#cddddr # cddddr
(cddddr list) (cddddr list)

View file

@ -8,7 +8,7 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`create-environment`](#create-environment) - [`create-environment`](#create-environment)
- [`setup-environment`] (#setup-environment) - [`setup-environment`] (#setup-environment)
#eval # eval
(eval expr . environment) (eval expr . environment)
@ -16,7 +16,7 @@ Evaluate `expr` in the specified environment and return the resulting value(s).
A non-standard extension is provided to supply a default global environment if the `environment` argument is not specified. A non-standard extension is provided to supply a default global environment if the `environment` argument is not specified.
#create-environment # create-environment
(create-environment vars values) (create-environment vars values)
@ -24,7 +24,7 @@ A non-standard function to create a new environment on top of the default one.
`vars` is a list of identifiers in the new environment, and `values` is a list of each value assigned to each identifier. `vars` is a list of identifiers in the new environment, and `values` is a list of each value assigned to each identifier.
#setup-environment # setup-environment
(setup-environment) (setup-environment)

View file

@ -9,25 +9,25 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`with-input-from-file`](#with-input-from-file) - [`with-input-from-file`](#with-input-from-file)
- [`with-output-to-file`](#with-output-to-file) - [`with-output-to-file`](#with-output-to-file)
#call-with-input-file # call-with-input-file
(call-with-input-file string proc) (call-with-input-file string proc)
Open given filename for input, pass the resulting port to `proc`, and close the port after `proc` returns. Open given filename for input, pass the resulting port to `proc`, and close the port after `proc` returns.
#call-with-output-file # call-with-output-file
(call-with-output-file string proc) (call-with-output-file string proc)
Open given filename for output, pass the resulting port to `proc`, and close the port after `proc` returns. Open given filename for output, pass the resulting port to `proc`, and close the port after `proc` returns.
#with-input-from-file # with-input-from-file
(with-input-from-file string thunk) (with-input-from-file string thunk)
Open given filename for input and change the current input to that port for the duration of `thunk`. Open given filename for input and change the current input to that port for the duration of `thunk`.
#with-output-to-file # with-output-to-file
(with-output-to-file string thunk) (with-output-to-file string thunk)

View file

@ -17,51 +17,51 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`sqrt`](#sqrt) - [`sqrt`](#sqrt)
- [`tan`](#tan) - [`tan`](#tan)
#acos # acos
(acos z) (acos z)
#asin # asin
(asin z) (asin z)
#atan # atan
(atan z) (atan z)
#cos # cos
(cos z) (cos z)
#exp # exp
(exp z) (exp z)
#finite? # finite?
(finite? z) (finite? z)
#infinite? # infinite?
(infinite? z) (infinite? z)
#log # log
(log z) (log z)
#nan? # nan?
(nan? z) (nan? z)
#sin # sin
(sin z) (sin z)
#sqrt # sqrt
(sqrt z) (sqrt z)
#tan # tan
(tan z) (tan z)

View file

@ -10,29 +10,29 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`make-promise`](#make-promise) - [`make-promise`](#make-promise)
- [`promise?`](#promise) - [`promise?`](#promise)
#delay # delay
(delay {expression}) (delay {expression})
Return a promise object that can be asked in the future (via `force`) to evaluate `{expression}` and return the result. Return a promise object that can be asked in the future (via `force`) to evaluate `{expression}` and return the result.
#force # force
(force promise) (force promise)
Force the value of a promise. Force the value of a promise.
#delay-force # delay-force
(delay-force {expression}) (delay-force {expression})
#make-promise # make-promise
(make-promise obj) (make-promise obj)
Return a promise which will return `obj` when forced. This function is similar to delay but does not delay its argument: it is a procedure rather than syntax. If `obj` is already a promise, it is returned. Return a promise which will return `obj` when forced. This function is similar to delay but does not delay its argument: it is a procedure rather than syntax. If `obj` is already a promise, it is returned.
#promise # promise
(promise? obj) (promise? obj)

View file

@ -6,7 +6,7 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`load`](#load) - [`load`](#load)
#load # load
(load filename) (load filename)

View file

@ -9,25 +9,25 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`get-environment-variable`](#get-environment-variable) - [`get-environment-variable`](#get-environment-variable)
- [`get-environment-variables`](#get-environment-variables) - [`get-environment-variables`](#get-environment-variables)
#command-line # command-line
(command-line) (command-line)
Returns the command line passed to the program as a list of strings. Returns the command line passed to the program as a list of strings.
#emergency-exit # emergency-exit
(emergency-exit) (emergency-exit)
Terminates the program immediately. This is an alias of `exit`. Terminates the program immediately. This is an alias of `exit`.
#get-environment-variable # get-environment-variable
(get-environment-variable name) (get-environment-variable name)
Return the value of the given environment variable. Return the value of the given environment variable.
#get-environment-variables # get-environment-variables
(get-environment-variables) (get-environment-variables)

View file

@ -7,14 +7,14 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`read`](#read) - [`read`](#read)
- [`read-all`](#read-all) - [`read-all`](#read-all)
#read # read
(read) (read)
(read port) (read port)
Read a single Scheme object from the input port. Read a single Scheme object from the input port.
#read-all # read-all
(read-all) (read-all)
(read-all port) (read-all port)

View file

@ -8,19 +8,19 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`current-second`](#current-second) - [`current-second`](#current-second)
- [`jiffies-per-second`](#jiffies-per-second) - [`jiffies-per-second`](#jiffies-per-second)
#current-jiffy # current-jiffy
(current-jiffy) (current-jiffy)
Get the number of jiffies since the program started. This function can return the same value if the program runs longer than approximately 72 minutes on a 32-bit platform. Get the number of jiffies since the program started. This function can return the same value if the program runs longer than approximately 72 minutes on a 32-bit platform.
#current-second # current-second
(current-second) (current-second)
Get the current number of seconds since the UNIX epoch. Get the current number of seconds since the UNIX epoch.
#jiffies-per-second # jiffies-per-second
(jiffies-per-second) (jiffies-per-second)

View file

@ -9,14 +9,14 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
- [`write-simple`](#write-simple) - [`write-simple`](#write-simple)
- [`write-shared`](#write-shared) - [`write-shared`](#write-shared)
#display # display
(display obj) (display obj)
(display obj port) (display obj port)
Write object to the given output port, or the current output if none is given. Strings and characters are output using only the characters that they represent, without any enclosing quotes, etc. Write object to the given output port, or the current output if none is given. Strings and characters are output using only the characters that they represent, without any enclosing quotes, etc.
#write # write
(write obj) (write obj)
(write obj port) (write obj port)
@ -24,12 +24,12 @@ Write object to the given output port, or the current output if none is given. S
Write object to the given output port, or the current output if none is given. Objects are written exactly as they are represented in code. Write object to the given output port, or the current output if none is given. Objects are written exactly as they are represented in code.
#write-shared # write-shared
(write-shared obj) (write-shared obj)
(write-shared obj port) (write-shared obj port)
#write-simple # write-simple
(write-simple obj) (write-simple obj)
(write-simple obj port) (write-simple obj port)