Toggle navigation
Toggle navigation
This project
Loading...
Sign in
안형준
/
git-lab
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
안형준
2018-11-13 13:29:26 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
220ef6097fb8c1c8b7acd61fb51c8aef8a2aabbd
220ef609
0 parents
HelloWorld!
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
hello world/HelloWorld.cpp
hello world/HelloWorld.cpp
0 → 100644
View file @
220ef60
1
+
#include<iostream>
2
+
3
+
int
main
()
4
+
{
5
+
6
+
std
::
cout
<<
"Hello world!"
<<
std
::
endl
;
7
+
8
+
9
+
system
(
"pause"
);
10
+
11
+
12
+
13
+
14
+
return
0
;
15
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment