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