mirror of
https://github.com/ENSL/NS.git
synced 2024-12-11 21:31:04 +00:00
f44f16d59a
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@168 67975925-1194-0748-b3d5-c16f83f1a3a1
9 lines
187 B
C++
9 lines
187 B
C++
#include <string>
|
|
|
|
int main()
|
|
{
|
|
std::string str1 = "string";
|
|
std::string str2;
|
|
str2.assign(str1.begin(), str1.begin() + 3);
|
|
return 0;
|
|
}
|