spring 2024 git template

This commit is contained in:
Jyke Savia 2023-12-18 07:45:29 +02:00
parent c98ef5f0bf
commit 91716ae12f
6 changed files with 19 additions and 1 deletions

10
.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
# python import generated files
**/*.pyc
**/__pycache__
# pycharm virtualenv
**/venv
# course example venv
**/popl_venv
# PLY yacc generated files
**/parser.out
**/parsetab.py

0
01_lexer/.gitkeep Normal file
View File

0
02_syntax/.gitkeep Normal file
View File

0
03_syntax_tree/.gitkeep Normal file
View File

View File

View File

@ -1 +1,9 @@
This is a template readme file to enforce main default branch. Edit this file as you see fit.
COMP.CS.400 Principles of Programming Languages
===============================================
This GIT repository is for the development of the course project.
Each of the submission phases have their own folder.
Please put all the neccessary code for each submission inside the
folder specified (i.e. each folder should be a standalone application -
even if that means copying files from one folder to another!)