Jump to content

User:Luthfiampas

From Wikipedia, the free encyclopedia

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#

[edit]
using System;

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

Dart

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

JavaScript

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

PHP

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

Python

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

Rust

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