Translations:Development/Tutorials/First program/11/pt-br: Difference between revisions

From KDE TechBase
(Created page with "Todo o código que precisamos estará em um arquivo, <tt>main.cpp</tt>. Crie esse arquivo com o código abaixo: <syntaxhighlight lang="cpp-qt"> #include <cstdlib>")
 
No edit summary
 
Line 1: Line 1:
Todo o código que precisamos estará em um arquivo, <tt>main.cpp</tt>. Crie esse arquivo com o código abaixo:
Todo o código que precisamos estará em um arquivo, <tt>main.cpp</tt>. Crie esse arquivo com o código abaixo:
<syntaxhighlight lang="cpp-qt">
#include <cstdlib>

Latest revision as of 20:04, 15 October 2019

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Development/Tutorials/First program)
All the code we need will be in one file, <tt>main.cpp</tt>. Create that file with the code below:

Todo o código que precisamos estará em um arquivo, main.cpp. Crie esse arquivo com o código abaixo: