Added tests for c++ source and header files and java files. (#107)

* Added tests for c++ source and header files and java files.

* Added VHDL to languages and tests

* Updated readme

Updated to reflect VHDL being added to languages
This commit is contained in:
xd009642
2017-02-18 02:00:24 +00:00
committed by Aaron Power
parent 4ad5010328
commit 14870d7625
6 changed files with 98 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
/* 15 lines 7 code 4 comments 4 blanks */
#include <iostream>
using namespace std;
/*
* Simple test
*/
int main()
{
cout<<"Hello world"<<endl;
return 0;
}