C
edit#include <stdio.h>
int main() {
printf("Hello! My name is Luthfi Tri Atmaja!");
return 0;
}
C++
edit#include <iostream>
int main() {
std::cout << "Hello! My name is Luthfi Tri Atmaja!";
return 0;
}
C#
editusing System;
namespace ConsoleApp
{
public static class ConsoleApp
{
public static void Main()
{
Console.WriteLine("Hello! My name is Luthfi Tri Atmaja!");
}
}
}
Dart
editvoid main() {
print('Hello, World!');
}
JavaScript
editconsole.log('Hello! My name is Luthfi Tri Atmaja!');
PHP
edit<?php echo 'Hello! My name is Luthfi Tri Atmaja!'; ?>
Python
editprint("Hello! My name is Luthfi Tri Atmaja!")
Rust
editfn main() {
println!("Hello! My name is Luthfi Tri Atmaja!");
}