advanced hello world :-)
[svn/Cll1h/.git] / demos / performance / test-performance2.sh
1 #!/bin/sh
2
3 cat print2.py
4 echo "Running..."
5 time ./print2.py > /dev/null
6
7 cat cout2.cpp
8 echo "Compiling..."
9 time make cout2
10 echo "Running..."
11 time ./cout2 > /dev/null
12
13 cat print2.pl
14 echo "Running..."
15 time ./print2.pl > /dev/null
16
17 cat cll1-print2.c
18 echo "Compiling..."
19 time make cll1-print2
20 echo "Running..."
21 time ./cll1-print2 > /dev/null
22
23 cat printf2.c
24 echo "Compiling..."
25 time make printf2
26 echo "Running..."
27 time ./printf2 > /dev/null
28
29 cat fputs2.c
30 echo "Compiling..."
31 time make fputs2
32 echo "Running..."
33 time ./fputs2 > /dev/null
This page took 0.269942 seconds and 4 git commands to generate.