List of All Programming Languages Mesyeti Knows

Basic Languages
#
JavaScript
JavaScript is a scripting language used primarily for client-side web development.
console.log("Hello, World!");
JS
#
Python
Python is a high-level, easy-to-read programming language.
print("Hello, World!")
PY
#
Java
Java is a platform-independent language that runs on any device that supports Java Virtual Machine (JVM).
public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); } }
JAVA
#
C++
C++ is a general-purpose programming language that combines object-oriented and procedural programming concepts.
#include \nusing namespace std;\nclass MyClass {\npublic:\n    void greet() {\n        cout <<"Hello, World!"> \n    }\n};
CPP
Scripting Languages
#
Ruby
Ruby is a dynamic, open-source programming language with a focus on simplicity and productivity.
puts "Hello, World!"
RB
#
PHP
PHP is a server-side scripting language widely used for web development.
PH
#
Perl
Perl is a powerful scripting language with extensive features for system administration and web development.
print "Hello, World!\n";
PL
Web Development Languages
#
HTML
HTML is the standard markup language for creating web pages.
\n\n

Hello, World!

HTML
#
CSS
CSS is a style sheet language used for describing the presentation of a document written in HTML.
body { background-color: lightgreen; }
CSS
#
JavaScript
JavaScript is a programming language that is used to create interactive web pages.
document.write("Hello, World!");
JS
Other Languages
#
SQL
SQL is a domain-specific language used in managing and manipulating databases.
SELECT * FROM users;
SQL
#
Go
Go is a statically typed, compiled programming language designed for performance and concurrency.
package main\n\nimport \"fmt\"\n\ntype User struct {\n Name string\n Email string\n}\n\nfunc main() {\n u := User{Name: "John", Email: "john@example.com"}\n fmt.Printf("%+v", u)\n}
GO
#
R
R is a programming language and software environment for statistical computing and graphics.
library(groceries)\nsample_data <- groceries()\nsummary(sample_data)
R
#
Dart
Dart is a systems programming language developed by Google, known for its performance and cross-platform capabilities.
void main() { print("Hello, World!"); }
DT