Live Chat!

Write a function

* * * * * 1 votos

November 3rd, 2006 toydi

To write a function, choose a syntax you prefer, either:
function funct-name { commands; }
or:
funct-name() { commands; }
and remember two things:

use spaces to separate curly braces from commands,
commands must end in a semicolon or newline.

Let’s try!
In a previous post, I used sort and uniq to emulate a few set theory operations. This time, I try to [...]

Posted in Common, dot, function | Hits: 3926 | 3 Comments »