C

#include <stdio.h>
int main() {
   printf("Hello! My name is Luthfi Tri Atmaja!");
   return 0;
}

C++

#include <iostream>

int main() {
    std::cout << "Hello! My name is Luthfi Tri Atmaja!";
    return 0;
}

C#

using System;

namespace ConsoleApp
{
    public static class ConsoleApp
    {
        public static void Main()
        {
            Console.WriteLine("Hello! My name is Luthfi Tri Atmaja!");
        }
    }
}

Dart

void main() {
  print('Hello, World!');
}

JavaScript

console.log('Hello! My name is Luthfi Tri Atmaja!');

PHP

<?php echo 'Hello! My name is Luthfi Tri Atmaja!'; ?>

Python

print("Hello! My name is Luthfi Tri Atmaja!")

Rust

fn main() {
    println!("Hello! My name is Luthfi Tri Atmaja!");
}