Word removal functionality completed
[getaclue.git] / getaclue
1 #!/usr/bin/env python
2
3 # Get A Clue (C) 2010 V. Harishankar
4 # Crossword puzzle maker program
5 # Licensed under the GNU GPL v3
6
7 # Main script
8
9 import crosswordpuzzlecreator
10
11 def main ():
12 app = crosswordpuzzlecreator.CrosswordPuzzleCreator ()
13
14 if __name__=="__main__":
15 main ()