#!/bin/sh

#
# Shell script that creates the directory structure for the `Orion Primer'
# sample application.
#
# Version: $Revision: 4.1 $ $Date: 2001/02/23 23:15:31 $
# Author:  Ernst de Haan (ernst@jollem.com)
#

mkdir hello-planet
mkdir hello-planet/src
mkdir hello-planet/src/java
mkdir hello-planet/src/java/hello
mkdir hello-planet/src/java/hello/ejb
mkdir hello-planet/src/java/hello/web
mkdir hello-planet/etc

