Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the languages for writing Hello and World in web

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "what are the languages for writing Hello and World in web". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Next, let the editor take you to learn "what are the languages for writing Hello and World in web?"

1. Assembly language-1949

Assembly language was born in 1949. In this article, I show you the classic assembly language code for the 8-bit processor of Intel 8080, released in April 1974.

Bdos equ 0005H; BDOS entry point start: mvi CJI 9; BDOS function: output string lxi DJ msg $; address of msg call bdos ret; return to CCP msg$: db 'Hello, WorldCraft' end start

2. Fortran-1957

Fortran is a derivative of Formula Translation, which is a general interactive programming language, especially suitable for numerical and scientific calculations. Fortran was founded in 1957, and here is its first "Hello, World!" Program:

PROGRAM Hello WRITE (*, *) 'Hello, Worldwide' STOP END Fortran 90 or 95 is written differently: PROGRAM Hello WRITE (*, *) 'Hello, Worldwide' END PROGRAM Hello

3. Lisp-1958

Lisp is the oldest family of programming languages. It is both interactive and functional. Lisp was created as a practical demo model in 1958, but it was not until the 1970 and 1980s that Lisp became a very popular language in the artificial intelligence world.

Here is Lisp's "Hello, World!" Program:

(write-line "Hello, World!")

4. Cobol-1959

The Cobol language was officially founded in 1959 and just celebrated its 60th anniversary in 2019. Cobol stands for General Business oriented language (COmmon Business Oriented Language), with the goal of becoming a common language for programming business applications. In 2019, Cobol is still widely used in banking and insurance related systems.

Here is Cobol's "Hello, World!" Program:

IDENTIFICATION DIVISION. PROGRAM-ID. HELLO-WORLD. PROCEDURE DIVISION. DISPLAY "Hello, World!" STOP RUN.

5. BASIC-1964

BASIC is an acronym for Beginner's All-purpose Symbolic Instruction Code (beginner's universal symbolic description code). It is a high-level programming language whose main goal is to be easy to use. Its "Hello, World!" The procedure is as follows:

PRINT "Hello, World!" END

6. Logo-1968

Logo is designed to be an easy-to-use Lisp, often referred to as "Lisp without brackets". Logs is not an object-oriented programming language, but it can help you get started with computer programming.

Print [Hello World!]

7. B-1969

B language was founded in 1969, it is now out of date, but its computer programming language plays an important role in the history of development. Because it is the B language that inspires the widely used C language.

Main () {putstr ("Hello Worldwide"); return (0);}

At the grammatical level, it is very much like C language.

8. Pascal-1970

Pascal is an interactive programming language that was founded in 1970. It is mainly designed for teaching purposes, because the language is characterized by clarity, and strict grammar contributes to a good program structure.

Begin writeln ('Hello, Worldwide') End.

Turbo Pascal is an integrated development environment for the Pascal language, which was created in 1983 and achieved great success in the 1980s and 1990s.

Turbo Pascal's Hello, World! The procedure is as follows:

Program HelloWorld (output); begin writeln ('Hello, Worldwide'); readln; end.

9. Forth-1970

Forth is a stack-based interactive programming language invented by Charles H. Moore in the 1960s. But its first big version was released in 1970. It was standardized by ANSI in 1994 and adopted by ISO in 1997. Forth3012 in 2014 brings new life to the development of language.

Here is "Hello, World!" in the 1970 version of the Forth language. Program:

HELLO (- -). "Hello, World!" CR; HELLO

10. C-1972

In 1972, in Bell Labs, Dennis Ritchie and Ken Thompson invented the C language in order to develop UNIX. Ken Thompson developed the B language, and Dennis Ritchie decided to create C by adding types to B. So B language provides inspiration for C language.

# include int main (void) {printf ("Hello, World!\ n"); return 0;}

11. Smalltalk-1972

Smalltalk, inspired by Lisp, is an object-oriented, dynamically typed programming language that was invented in 1972. Smalltalk is one of the earliest programming languages with integrated development environment.

Transcript show: 'Hello, Worldwide, cr.

12. Prolog-1972

Prolog is a logic programming language related to artificial intelligence and computational linguistics, which was founded in 1972.

:-write ('Hello, Worldwide'), nl.

13. ML-1973

ML, the abbreviation of Meta Language, is a functional programming language based on Lisp. ML is usually characterized by Lisp and has types.

Print "Hello, World!\ n"

14. Scheme-1975

Founded in 1975, Scheme is a multi-paradigm programming language that supports functional and interactive programming. It is one of the three important variants of Lisp and is jointly developed by Common Lisp and Clojure.

(display "Hello, World!") (newline)

15. SQL-1978

SQL, the structured query language, is a standard computer programming language for operating relational databases. Although you can't create a simple "Hello, World!" at design time. Program, but I think it should be an interesting program to write. If you want to learn SQL, here are some recommended courses.

CREATE TABLE message (text char (15)); INSERT INTO message (text) VALUES ('Hello, Worldwide'); SELECT text FROM message; DROP TABLE message

16. C++-1980

C++ was founded in 1980 by Bjarne Stroustrup, who added classes to the C language and got the name C++ in 1983. Now C++ has passed the ISO standardization and is widely used in industry and other fields.

# include using namespace std; int main () {cout

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report