#!/usr/bin/python

import os
import sys

if sys.argv[1] == '-l':
    fhl = open('data/basic.tab', 'r')
    print fhl.read()

sys.exit(0)
