Examples
K is an interpreted language where every statement is evaluated and its results immediately displayed. Literal expressions such as strings evaluate to themselves. Consequently, the Hello world-program is trivial:
"Hello world!"The following expression sorts a list of strings by their lengths:
x@>#:'xThe expression is evaluated from right to left as follows:
- #:'x returns the length of each word in the list x.
- > returns the indices that would sort a list of values in descending order.
- @ use the integer values on the right to index into the original list of strings.
A function to determine if a number is prime can be written as:
{&/x!/:2_!x}The function is evaluated from right to left:
- !x enumerate the positive integers less than x.
- 2_ drops the first two elements of the enumeration (0 and 1).
- x!/: performs modulo division between the original integer and each value in the truncated list.
- &/ find the minimum value of the list of modulo result.
If x is not prime then one of the values returned by the modulo operation will be 0 and consequently the minimal value of the list. If x is prime then the minimal value will be 1, because x mod 2 is 1 for any prime greater than 2.
The function below can be used to list all of the prime numbers between 1 and R with:
(!R)@&{&/x!/:2_!x}'!RThe expression is evaluated from right to left
- !R enumerate the integers less than R.
- ' apply each value of the enumeration to the prime number function on the left. This will return a list of 0's and 1's.
- & return the indices of the list where the value is 1.
- @ use the integer values listed on the right to index into the list on the left.
- (!R) A list of integers less than R.
Read more about this topic: K (programming Language)
Famous quotes containing the word examples:
“In the examples that I here bring in of what I have [read], heard, done or said, I have refrained from daring to alter even the smallest and most indifferent circumstances. My conscience falsifies not an iota; for my knowledge I cannot answer.”
—Michel de Montaigne (15331592)
“No rules exist, and examples are simply life-savers answering the appeals of rules making vain attempts to exist.”
—André Breton (18961966)
“It is hardly to be believed how spiritual reflections when mixed with a little physics can hold peoples attention and give them a livelier idea of God than do the often ill-applied examples of his wrath.”
—G.C. (Georg Christoph)