2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-17 09:25:32 +00:00
cheat.sheets/sheets/foo
2020-11-18 17:50:29 +01:00

14 lines
417 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# bar
# The terms foobar (/ˈfuːbɑːr/), or foo and others are used as metasyntactic
# variables and placeholder names
# The etymology of foobar is generally traced
# to the World War II military slang FUBAR,
# which evolved through being bowdlerised to foobar
# In this Scheme sample, foobar is used to illustrate the name of a function:
(define foobar
(lambda (x)
(display x)))
(foobar "Hello World!")