Unreal Engine 5 early access now available

TheAnointedOne

Superstar
Joined
Jul 30, 2012
Messages
7,779
Reputation
666
Daps
30,667
Nice. This would be a good time to start learning C++

Code:
#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 ;
}
 
Last edited:

Mr Rager

Leader of the Delinquents
Supporter
Joined
Feb 9, 2014
Messages
15,572
Reputation
5,650
Daps
69,883
Reppin
Mars
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 ;
}

Aware. I develop in C#
But when you want to implement some slick shyt, you need to understand actual code!
 
Top