Add .gitignore

This commit is contained in:
Lucàs
2023-02-24 15:18:30 +01:00
parent 726fbe438c
commit 6efd85192d
10 changed files with 297 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#load "lang.cmo";;
#load "parser.cmo" ;;
#load "lexer.cmo" ;;
#load "typing.cmo";;
#load "instrs.cmo";;
#load "gen.cmo";;
#load "interf.cmo";;
open Interf;;
open Lang;;
open Instrs;;
(* For using the parser:
- Evaluate this file (use.ml)
- parse "Tests/rectangles.c" ;;
* For code generation:
- Evaluate this file (use.ml)
- run_test "Tests/rectangles.c" "Tests/rectangles.ps";;
*)