how to print hello world in gdnative

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By nishanthgreen

we need some starting tutorials to develop in c++

so to be clear, you want to know how to print hello world in c++?

Millard | 2020-10-17 17:56

Is this what you’re looking for: https://docs.godotengine.org/en/stable/tutorials/plugins/gdnative/gdnative-cpp-example.html

Bernard Cloutier | 2020-10-18 01:27

I’ve done a little searching around and I think that Godot::print("Hello World!") should work. The normal way of doing it in c++ is std::cout << "Hello World!" (though you probably already know that) but that might not work with godot.

Coweh | 2020-10-23 16:06