Her Dilde 'Mrb Dnya' Demek Lazım




C#

using System; namespace HelloWorld { class Hello { static void Main() { Console.WriteLine("Hello World!"); // Keep the console window open in debug mode. Console.WriteLine("Press any key to exit."); Console.ReadKey(); } } }

-----

ActionScript

this.createTextField("merhaba",0,10,10,100,20);
this.merhaba.text="Merhaba Dunya!";

Ascii

In hexadecimal notation (0D = carriage return, 0A = newline):
48 65 6C 6C 6F 2C 20 77 6F 72 6C 64 21 0D 0A

Asp

<%
Response.Write("Merhaba Dunya!")
%>

Assembly 

MSG: .ASCIIZ "Merhaba Dunya!"
START: LDX #0
LOOP: LDA MSG,X ; load character
 JSR $FFD2 ; output to current output device
 INX
 BNE @LOOP 
 RTS

Basic

10 PRINT "Merhaba Dunya!"
20 END

Visual Basic

Sub Main()
 Print "Merhaba Dunya!"
End Sub

VB .Net

Module HelloWorldApp
 Sub Main()
 System.Console.WriteLine("Merhaba Dunya!")
 End Sub
End Module

C

#include <stdio.h>

/* Merhaba */
int main(void)
{
 printf("Merhaba Dunya!");
 return 0;
}

C++

int main()
{
 System::Console::WriteLine("Merhaba Dunya!");
}

Html

<html>
<body>
 Merhaba Dunya!
</body>
</html>

Java

public class Merhaba{
 public static void main(String[] args) {
 System.out.println("Merhaba Dunya!");
 }
}

Script

<script language="JavaScript">

    document.write('Merhaba Dunya!');

</script>

Matlab

disp('Merhaba Dunya!')

Pascal

program merhaba;

begin
writeln('Merhaba Dunya!');
end.

PHP

<?php
 echo 'Merhaba Dunya!';
?>

Python

print("Merhaba Dunya!") 

XML

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="Merhaba.xsl" ?>
<!-- Merhaba Yazdirma -->
<text>
   <string>Merhaba Dunya!</string>
</text>

0 comments:

Yorum Gönder