Programming Fundamentals/Introduction/C++: Difference between revisions

From Wikiversity
Jump to navigation Jump to search
Content deleted Content added
m See Also
Line 11: Line 11:
== Try It ==
== Try It ==
* [https://repl.it/EJlH/1 repl.it]
* [https://repl.it/EJlH/1 repl.it]
* [https://www.tutorialspoint.com/compile_cpp_online.php TutorialsPoint]


== See Also ==
== See Also ==

Revision as of 17:45, 30 October 2016

hello.cpp

#include <iostream>

int main()
{
  std::cout << "Hello world!";
}

Try It

See Also