Vikrant Posted on May 2, 2024 Hello, World! #help #discuss Hello series (2 Part Series) 1 Hello, World! 2 Hello, World! Hello DEV, this is my first post Top comments (1) Subscribe Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Collapse Expand π΄π£πππππ π΄π£πππππ π΄π£πππππ Follow LearningποΈ, Creatingβ¨, Buildingπ¨ and Sharingπ© Location π Africa Education Covenant University Pronouns Him Work Student Joined Apr 1, 2024 • May 2 '24 Dropdown menu Copy link Hide Python: print("Hello, World!") Enter fullscreen mode Exit fullscreen mode JavaScript: console.log("Hello, World!"); Enter fullscreen mode Exit fullscreen mode Java: public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); } } Enter fullscreen mode Exit fullscreen mode C++: #include <iostream> int main() { std::cout << "Hello, World!" << std::endl; return 0; } Enter fullscreen mode Exit fullscreen mode Ruby: puts "Hello, World!" Enter fullscreen mode Exit fullscreen mode PHP: <?php echo "Hello, World!"; ?> Enter fullscreen mode Exit fullscreen mode Swift: print("Hello, World!") Enter fullscreen mode Exit fullscreen mode Go: package main import "fmt" func main() { fmt.Println("Hello, World!") } Enter fullscreen mode Exit fullscreen mode C#: using System; class HelloWorld { static void Main() { Console.WriteLine("Hello, World!"); } } Enter fullscreen mode Exit fullscreen mode Bash: echo "Hello, World!" Enter fullscreen mode Exit fullscreen mode Code of Conduct • Report abuse Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink. Hide child comments as well Confirm For further actions, you may consider blocking this person and/or reporting abuse
Top comments (1)