Olá Mundo!
<!-- HTML + Javascript -->
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script>
alert('Hello World!');
</script>
</body>
</html>
# Python
print('Hello World!')
using System;
namespace Hello
{
class World
{
static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
Console.ReadLine();
}
}
}
// C
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
I was wondering on how many times we bump into this subject when we start in the programming carrer.