slash

slash is a simple type-oriented programming language
Log | Files | Refs | README | LICENSE

slash.c (228B)


      1 /*
      2  * slash.c -- main
      3  */
      4 
      5 #include <stdio.h>
      6 #include <stdlib.h>
      7 
      8 #include "cli.h"
      9 #include "pipeline.h"
     10 #include "stat.h"
     11 
     12 int
     13 main(int argc, char** argv)
     14 {
     15 	initstat();
     16 	cli(argc, argv);
     17 	compile();
     18 
     19 	return EXIT_SUCCESS;
     20 }
     21