+ 2
Hello !!! I want some new types of hello I mean HELLO of different languages as i want to know more about world
3 odpowiedzi
+ 12
---- python
print("hello")
---- c++
#include <iostream.h>
main()
{
    cout << "hello";
    return 0;
}
----c#
// Hello1.cs public class Hello1 { public static void Main() { System.Console.WriteLine("hello"); } } 
---- html
<p>hello</p>
---- javascript
document.write('hello');
---- ruby
puts "hello"
---- java
 public class Hello {     public static void main(String[] args) {                System.out.println("hello");     } }
---- php
<?php echo "hello" ?> 
+ 1
hola - spanish
+ 1
Google translate is your friend, buddy. 



