You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: js/README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
JavaScript is already installed in every modern web browser. To develop command line scripts and servers, download and install Node.js from the [Node home page](https://nodejs.org) or use your favorite package manager.
6
6
7
-
Once installed, programs in this folder can be run from the command line like so:
7
+
Programs in this folder can be run from the command line like so:
Running the command `node` with no arguments gives you a repl.
22
22
23
-
To run the tests on a Unix-like shell:
24
-
25
-
```
26
-
./test.sh
27
-
```
23
+
Tests can be run with `test.sh` or `test.ps1`.
28
24
29
25
Note that this folder contains the file **package.json** to enable each of the command line **.js** files to run as _module_ scripts, rather than _classic_ scripts. Modules are the preferred way to write JavaScript, as they enable a host of newer modern features and are much more safe and secure. For the differences between scripts and modules, see [this article](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) from MDN’s JavaScript Guide.
30
26
@@ -36,17 +32,21 @@ JavaScript is a modern, expressive, dynamic, event-driven programming language t
-[JavaScript at Rosetta Code](https://rosettacode.org/wiki/Category:JavaScript)
45
42
46
-
## JavaScript Open Source Projects
43
+
## JavaScript in Open Source
47
44
48
-
Studying, and contributing to, open source projects is an excellent way to improve your proficiency in any language. Of the many projects using JavaScript, you may enjoy:
Copy file name to clipboardExpand all lines: lua/README.md
+10-12Lines changed: 10 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
3
3
# Lua Explorations
4
4
5
-
To build and run Lua programs on your local machine, download and install the Lua system from the [Lua downloads page](https://www.lua.org/download.html) or use your favorite package manager.
5
+
To build and run Lua programs on your local machine, download and install the most recent language version from the [Lua downloads page](https://www.lua.org/download.html) or use your favorite package manager.
6
6
7
-
Once installed, programs in this folder can be run from the command line like so:
7
+
Programs in this folder can be run from the command line like so:
Running the command `lua` with no arguments gives you a repl.
22
22
23
-
To run the tests on a Unix-like shell:
24
-
25
-
```
26
-
./test.sh
27
-
```
23
+
Tests can be run with `test.sh` or `test.ps1`.
28
24
29
25
## About Lua
30
26
31
-
Lua is a lightweight and efficient programming language. It was designed and implemented by a team led by Roberto Ierusalimschy at PUC-Rio, Pontifícia Universidade Católica do Rio de Janeiro, in Brazil. The first version of Lua was released in 1993 and it is still being actively developed today. Lua is a popular choice for game programming and was the implementation language for titles such as World of Warcraft, Angry Birds, Hades II, Diner Dash, Roblox, and SimCity 4. It interoperates well with other languages, and can easily be embedded into C, C++, Java, Fortran, Smalltalk, and Erlang implementations.
27
+
Lua is a lightweight and efficient programming language. It was designed and implemented by a team led by Roberto Ierusalimschy at PUC-Rio, Pontifícia Universidade Católica do Rio de Janeiro, in Brazil. The first version of Lua was released in 1993 and the language is still being actively developed. Lua is a popular choice for game programming and was the implementation language for titles such as World of Warcraft, Angry Birds, Hades II, Diner Dash, Roblox, and SimCity 4. It interoperates well with other languages, and can easily be embedded into C, C++, Java, Fortran, Smalltalk, and Erlang implementations.
-[List of Lua Books](https://realtoughcandy.com/best-lua-books/)
43
39
-[List of video games scripted in Lua](<https://en.wikipedia.org/wiki/Category:Lua_(programming_language)-scripted_video_games>)
40
+
-[Lua at Rosetta Code](https://rosettacode.org/wiki/Category:Lua)
44
41
45
-
## Lua Open Source Projects
42
+
## Lua in Open Source
46
43
47
-
Studying, and contributing to, open source projects is an excellent way to improve your proficiency in any language. Of the many projects using Lua, you may enjoy:
Copy file name to clipboardExpand all lines: python/README.md
+11-9Lines changed: 11 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
To build and run Python programs on your local machine, download and install the most recent language version from the [Python home page](https://www.python.org/) or use your favorite package manager.
6
6
7
-
Once installed, programs in this folder can be run from the command line like so:
7
+
Programs in this folder can be run from the command line like so:
Running the command `python3` with no arguments gives you a repl.
22
22
23
-
To run the tests on a Unix-like shell:
23
+
If you, as you may have already, are using virtual environments or have aliased `python3` to `python`, you may replace `python3` with `python` in the above commands.
24
24
25
-
```
26
-
./test.sh
27
-
```
25
+
Tests can be run with `test.sh` or `test.ps1`.
28
26
29
27
## About Python
30
28
@@ -34,16 +32,20 @@ Python is a powerful and expressive programming language that “lets you work q
-[Python at Rosetta Code](https://rosettacode.org/wiki/Category:Python)
42
41
43
-
## Python Open Source Projects
42
+
## Python in Open Source
44
43
45
-
Studying, and contributing to, open source projects is an excellent way to improve your proficiency in any language. Of the many projects using Python, you may enjoy:
0 commit comments