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