FactsNice. This would be a good time to start learning C++
Nice. This would be a good time to start learning C++
#include <iostream>
#include <string>
#include <vector>
int main() {
    std::vector<std::string> msg = { "UE", "can", "also", "use", "blueprints" } ;
    std::for_each( msg.begin(), msg.end(), []( std::string s ) {
        std::cout << s << ' ' ;
    } ) ;
    std::cin.get() ;
    return 0 ;
}Code:#include <iostream> #include <string> #include <vector> int main() { std::vector<std::string> msg = { "UE4", "can", "also", "use", "blueprints" } ; std::for_each( msg.begin(), msg.end(), []( std::string s ) { std::cout << s << ' ' ; } ) ; std::cin.get() ; return 0 ; }

This shyt is unreal

