Hello !!! I want some new types of hello I mean HELLO of different languages as i want to know more about world | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Hello !!! I want some new types of hello I mean HELLO of different languages as i want to know more about world

4th Apr 2017, 4:45 AM
Kalpana
Kalpana - avatar
3 Answers
+ 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" ?>
4th Apr 2017, 5:24 AM
Ahri Fox
Ahri Fox - avatar
+ 1
hola - spanish
4th Apr 2017, 4:51 AM
Edward
+ 1
Google translate is your friend, buddy.
4th Apr 2017, 5:12 AM
CHMD
CHMD - avatar