Skip to content
Snippets Groups Projects
Select Git revision
  • fcf1aa65f47b0afb202aa23512e4579e79d2880d
  • master default protected
  • undefined
3 results

sample_1.cpp

Blame
  • Forked from cp1_ws19 / cpp_introduction
    Source project has a limited visibility.
    sample_1.cpp 119 B
    #include <iostream>
    
    int main() {
    	using std::cout;
    	using std::endl;
    
    	cout << "Hello physics!" << endl;
    
    	return 0;
    }