mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-22 21:03:53 +00:00
Estimated hours taken: 1 <overview or general description of changes> <directory>/<file>: <detailed description of changes>
11 lines
173 B
Bash
Executable File
11 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
# Given N arguments, print the first N/2 arguments, rounding down.
|
|
|
|
take=`expr $# / 2`
|
|
while test $take -gt 0
|
|
do
|
|
echo -n "$1 "
|
|
shift
|
|
take=`expr $take - 1`
|
|
done
|