Logo

Programming-Idioms

History of Idiom 3 > diff from v30 to v31

Edit summary for version 31 by Kotik:
[Scheme] update online demo

Version 30

2017-01-11, 10:21:44

Version 31

2017-01-11, 10:22:49

Idiom #3 Create a procedure

Like a function which doesn't return any value, thus has only side effects (e.g. Print to standard output)

Idiom #3 Create a procedure

Like a function which doesn't return any value, thus has only side effects (e.g. Print to standard output)

Code
(define (finish name)
    (display "My job here is done. Goodbye ")
    (display name)
    (newline))
Code
(define (finish name)
    (display "My job here is done. Goodbye ")
    (display name)
    (newline))
Comments bubble
This is a short syntax for a lambda definition.
Comments bubble
This is a short syntax for a lambda definition.
Demo URL
http://repl.it/SII
Demo URL
https://repl.it/SII/3