├── PERL.pl ├── R_Lang.r ├── Ruby.rb ├── PYTHON.py ├── swift.swift ├── JavaScript.js ├── PHP.php ├── TypeScript.ts ├── Kotlin.kt ├── Rust.rs ├── Go_Lang.go ├── C_language.c ├── C++_language.cpp ├── C#.cs ├── Java.java └── README.md /PERL.pl: -------------------------------------------------------------------------------- 1 | print("Hello My Dear GitHub Users") -------------------------------------------------------------------------------- /R_Lang.r: -------------------------------------------------------------------------------- 1 | cat("Hello My Dear GitHub Users") -------------------------------------------------------------------------------- /Ruby.rb: -------------------------------------------------------------------------------- 1 | puts "Hello My Dear GitHub Users" -------------------------------------------------------------------------------- /PYTHON.py: -------------------------------------------------------------------------------- 1 | print("Hello My Dear GitHub Users") -------------------------------------------------------------------------------- /swift.swift: -------------------------------------------------------------------------------- 1 | print("Hello My Dear GitHub Users") -------------------------------------------------------------------------------- /JavaScript.js: -------------------------------------------------------------------------------- 1 | console.log("Hello My Dear GitHub Users") -------------------------------------------------------------------------------- /PHP.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TypeScript.ts: -------------------------------------------------------------------------------- 1 | console.log("Hello My Dear GitHub Users"); -------------------------------------------------------------------------------- /Kotlin.kt: -------------------------------------------------------------------------------- 1 | fun main(){ 2 | println("Hello My Dear GitHub Users") 3 | } -------------------------------------------------------------------------------- /Rust.rs: -------------------------------------------------------------------------------- 1 | fn main(){ 2 | println("Hello My Dear GitHub Users"); 3 | } -------------------------------------------------------------------------------- /Go_Lang.go: -------------------------------------------------------------------------------- 1 | package main 2 | import "fmt" 3 | func main(){ 4 | fmt.Println("Hello My Dear GitHub Users") 5 | } -------------------------------------------------------------------------------- /C_language.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | void main(){ 5 | printf("Hello My Dear GitHub Users"); 6 | } -------------------------------------------------------------------------------- /C++_language.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | void main(){ 5 | cout<<"HELLO MY DEAR GITHUB USERS"; 6 | } -------------------------------------------------------------------------------- /C#.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | class program{ 3 | static void main(){ 4 | Console.WriteLine("Hello My Dear GitHub Users"); 5 | } 6 | } -------------------------------------------------------------------------------- /Java.java: -------------------------------------------------------------------------------- 1 | class Demo { 2 | public static void main(String[] args) { 3 | System.out.println("Hello My Dear GitHub Users"); 4 | } 5 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # 🌟 Diff_Programming_Language_Print_Statement Repository 🚀 3 | 4 | Welcome to the **Diff_Programming_Language_Print_Statement** repository! 🎉 This repo showcases the simplest and most essential command in programming - the print statement - across a variety of popular programming languages. Whether you're a beginner just getting started or a seasoned coder reminiscing about your "Hello, World!" days, this repository has something for you! 😄 5 | 6 | ## 📚 Repository Structure 7 | 8 | Here's a quick overview of the files included in this repository: 9 | 10 | - **C Language**: `c_language.c` 🥇 11 | - **C++**: `c++_language.cpp` 🥈 12 | - **C#**: `c#.cs` 🥉 13 | - **Go**: `Go_Lang.go` 🐹 14 | - **Java**: `Java.java` ☕ 15 | - **JavaScript**: `JavaScript.js` 🌐 16 | - **Kotlin**: `Kotlin.kt` 📱 17 | - **PHP**: `PHP.php` 🐘 18 | - **Perl**: `PERL.pl` 🐪 19 | - **Python**: `PYTHON.py` 🐍 20 | - **R**: `R_Lang.r` 📊 21 | - **Ruby**: `Ruby.ru` 💎 22 | - **Rust**: `Rust.rs` 🦀 23 | - **Swift**: `swift.Swift` 🦅 24 | - **TypeScript**: `TypeScript.ts` 📝 25 | 26 | ## 🎯 Purpose 27 | 28 | The main goal of this repository is to provide a quick reference for the basic print statement in various programming languages. It's perfect for: 29 | 30 | - 🧑‍💻 New learners who want to see how the print statement looks in different languages. 31 | - 🎓 Educators looking for simple examples to teach the basics of programming. 32 | - 🤓 Enthusiasts who enjoy seeing the diversity and similarities in syntax across languages. 33 | 34 | ## 🌈 Fun Facts & Tidbits 35 | 36 | - **C Language**: The granddaddy of modern programming languages. 🌐 37 | - **C++**: Known for its power and performance, often used in game development. 🎮 38 | - **C#**: A Microsoft favorite, great for developing Windows applications. 🖥️ 39 | - **Go**: Developed at Google, it's known for its simplicity and efficiency. 💡 40 | - **Java**: "Write once, run anywhere" - a cornerstone of enterprise applications. 🏢 41 | - **JavaScript**: The language of the web, making websites interactive since 1995. 🌍 42 | - **Kotlin**: The new kid on the block, fully interoperable with Java and a favorite for Android development. 📱 43 | - **PHP**: The backbone of many websites, including WordPress. 📝 44 | - **Perl**: Loved by sysadmins for its text processing prowess. 🛠️ 45 | - **Python**: The go-to language for beginners and experts alike, thanks to its readability. 🐍 46 | - **R**: A statistical powerhouse, ideal for data analysis and visualization. 📈 47 | - **Ruby**: Praised for its elegant syntax, the language behind Ruby on Rails. 🚂 48 | - **Rust**: Focuses on safety and performance, gaining popularity in systems programming. 🛡️ 49 | - **Swift**: Apple's language for iOS and macOS development. 🍏 50 | - **TypeScript**: A superset of JavaScript that adds static types, making it more robust. 🔒 51 | 52 | ## 🥳 Let's Celebrate Code! 53 | 54 | Coding is fun, and seeing the same concept in different syntaxes can be both educational and entertaining. Enjoy exploring the print statements and happy coding! 🎈 55 | --------------------------------------------------------------------------------