~juju/ubuntu/quantal/juju/0.6

« back to all changes in this revision

Viewing changes to juju/charm/tests/repository/dummy/src/hello.c

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum
  • Date: 2011-10-09 09:50:34 UTC
  • mto: (10.1.1 precise)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20111009095034-wqzww7z4tx2n0x43
Tags: upstream-0.5+bzr398
ImportĀ upstreamĀ versionĀ 0.5+bzr398

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <stdio.h>
2
 
 
3
 
main()
4
 
{
5
 
    printf ("Hello World!\n");
6
 
    return 0;
7
 
}