WARNING:
JavaScript is turned OFF. None of the links on this concept map will
work until it is reactivated.
If you need help turning JavaScript On, click here.
Esse mapa conceitual, produzido no IHMC CmapTools, tem a informação relacionada a: 02. exemplo do hello world, ÓLA MUNDO (HELLO WORLD) em Python (Alto Nível) >>> print ('Óla mundo') Óla mundo >>>, ÓLA MUNDO (HELLO WORLD) em PHP (Alto Nível) <?php // Qualquer uma dos três comandos monstram a mensagem // Exemplo 1 die("Óla mundo"); // Exemplo 2 print("Óla mundo"); // Exemplo 3 echo "Óla mundo"; ?>, ÓLA MUNDO (HELLO WORLD) em ASSEMBLY Linguagem de máquina (Baixo Nível) section .data msg db 'Como programar em Assembly - Curso Assembly Progressivo', 0AH len equ $-msg section .text global _start _start: mov edx, len mov ecx, msg mov ebx, 1 mov eax, 4 int 80h mov ebx, 0 mov eax, 1 int 80h