forked from qt-creator/qt-creator
		
	Change-Id: I9c9bc9556234ec321c6e3723f5276a0b66f6c90a Reviewed-by: Robert Loehning <robert.loehning@digia.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			127 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			127 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <iostream>
 | 
						|
#include "testfile.h"
 | 
						|
 | 
						|
using namespace std;
 | 
						|
 | 
						|
int main()
 | 
						|
{
 | 
						|
  cout << "Hello World!" << endl;
 | 
						|
  return 0;
 | 
						|
}
 | 
						|
 |