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