Hello World

How to say hello to the world? Java class Hello{ public static void main(String[] args){ System.out.println("Hello World!"); } } C #include <stdio.h> int main(){ printf("Hello World!"); return 0; } C++ #include <iostream> int main(){ std::cout << "Hello World!" << std::endl; return 0; } ###C# namespace HelloWorld{ class Hello{ static void Main(String[] args){ System.Console.WriteLine("Hello World!"); } } } Python print("Hello World!") Ruby puts 'Hello World!' TCL Language puts "Hello World!" JavaScript console.log("Hello World!"); TypeScript console.log 'Hello World!' Perl print "Hello World!"; R cat('Hello World!'); Swift println('Hello World!'); Kotlin fun main(args: Array<String>){ println("Hello World!") } Go println('Hello World!'); PHP echo "Hello World!"; VBA msgbox "Hello World" Assembly Language global _main extern _printf section .text _main: push message call _printf add esp, 4 message: db 'Hello World!', 11, 0 Me Hello the fucking world

February 17, 2022 · 1 分鐘 · Rain Hu
Oh! You closed up the window, so you cannot see raining

[Washam] Way to SWE

Coding Interview University John Washam: I originally created this as a short to-do list of study topics for becoming a software engineer, but it grew to the large list you see today. After going through this study plan, I got hired as a Software Development Engineer at Amazon! You probably won’t have to study as much as I did. Anyway, everything you need is here. I studied about 8-12 hours a day, for several months. This is my story: Why I studied full-time for 8 months for a Google interview ...

May 25, 2019 · 50 分鐘 · Rain Hu