perforamnce test for printing one and two strings in C,C++,C<<1,Perl and Python
[svn/Cll1h/.git] / demos / performance / test-performance
1 #!/bin/sh
2 clear
3
4 cat print.py
5 echo "Running..."
6 time ./print.py > /dev/null
7
8 cat print.pl
9 echo "Running..."
10 time ./print.pl > /dev/null
11
12 cat cll1-print.c
13 echo "Compiling..."
14 time make cll1-print
15 echo "Running..."
16 time ./cll1-print > /dev/null
17
18 cat printf.c
19 echo "Compiling..."
20 time make printf
21 echo "Running..."
22 time ./printf > /dev/null
23
24 cat puts.c
25 echo "Compiling..."
26 time make puts
27 echo "Running..."
28 time ./puts > /dev/null
29
30 cat fputs.c
31 echo "Compiling..."
32 make fputs
33 echo "Running..."
34 time ./fputs > /dev/null
This page took 0.267751 seconds and 4 git commands to generate.