Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
101
Lang/Jsish/00-LANG.txt
Normal file
101
Lang/Jsish/00-LANG.txt
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
{{language|Jsish
|
||||
|gc=yes
|
||||
|parampass=value
|
||||
|express=implicit
|
||||
|checking=dynamic
|
||||
|strength=weak (assistive)
|
||||
|site=https://jsish.org
|
||||
}}
|
||||
|
||||
'''Jsish''' is a scripting language based on ECMAScript syntax, influenced by Tcl internals, extended for Web development, and designed for embedded use. Developed by Peter MacDonald, the creator of the first stand alone GNU/Linux distribution, SLS, Softlanding Linux System (circa 1992).
|
||||
|
||||
Jsish (JavaScript Interpreter SHell, Jsi for short) syntax is based on ECMAScript 5.1, but deviates in some key areas:
|
||||
|
||||
* No automatic semicolon insertion.
|
||||
* Empty array/object elements are not supported.
|
||||
* The Error object is not implemented: the argument to '''catch()''' is a string.
|
||||
* The Date object is not implemented: '''strftime/strptime''' are provided to replace the functionality.
|
||||
* UTF character manipulation is not yet supported, but ''whole string'' literals are.
|
||||
* The '''typeof []''' is "array" instead of "object".
|
||||
* Function definitions can use type specifiers and provide default values.
|
||||
|
||||
|
||||
While '''Jsish''' can honestly be called a Javascript interpreter, the extensions and differences from standard, form what is, realistically, a different language. For instance:
|
||||
|
||||
nodejs> [1,2] + [2,1]
|
||||
"1,22,1"
|
||||
|
||||
jsish# [1,2] + [2,1];
|
||||
0
|
||||
|
||||
Typed parameters for functions also sets Jsi apart from other ECMAScript implementations.
|
||||
|
||||
prompt$ jsish
|
||||
Jsish interactive: see 'help [cmd]'
|
||||
# function foo (a:number, b:string="ok"):number { puts(b); return a+1; }
|
||||
variable
|
||||
|
||||
/* Demonstrate typed parameters */
|
||||
# foo('a', 1, 2);
|
||||
warn: got 3 args, expected 1-2, calling function foo(a:number, b="ok"):number (at or near "a")
|
||||
warn: type mismatch for argument arg 1 'a': expected "number" but got "string", in call to 'foo' <a>. (at or near "a")
|
||||
warn: type mismatch for argument arg 2 'b': expected "string" but got "number", in call to 'foo' <1>. (at or near "a")
|
||||
1
|
||||
warn: type mismatch returned from 'foo': expected "number" but got "string", in call to 'foo' <a1>. (at or near "a")
|
||||
"a1"
|
||||
|
||||
# foo(1);
|
||||
ok
|
||||
2
|
||||
#
|
||||
|
||||
|
||||
The '''jsish''' executable evaluates scripts by interpreter directive, from files given as command line arguments or interactively. Influenced by Tcl, Jsi also supports sub-interpreters and certain features can be restricted for ''safer'' computing.
|
||||
|
||||
Unit testing is built into the interpreter, assisted by Jsi syntax allowing for argument and return type specifiers, and with special '''=!EXPECTSTART!=''', '''=!EXPECTEND!=''' source code markers inside comment blocks (along with =!INPUTSTART/END!= pairs). These are used for validation during test run capture. Unit test mode is initiated when '''jsish''' is invoked with a '''-u''' command line option. These blocks of expected results can be entered and maintained manually, or initially created (and updated as changes are made) with ''jsish -u -update true <scriptname>''. This ease of use is hoped to encourage full and complete testing of Jsi scripts and applications.
|
||||
|
||||
For example:
|
||||
|
||||
<lang javascript>#!/usr/local/bin/jsish -u %s
|
||||
|
||||
var a = { abc: "abc", def: "123" };
|
||||
|
||||
puts(a.abc);
|
||||
puts(a.def);
|
||||
puts(JSON.stringify(a));
|
||||
|
||||
/*
|
||||
!=EXPECTSTART=!
|
||||
abc
|
||||
123
|
||||
{ "abc":"abc", "def":"123" }
|
||||
!=EXPECTEND=!
|
||||
*/</lang>
|
||||
|
||||
{{out}}
|
||||
<pre>
|
||||
prompt$ jsish sampler.jsi
|
||||
abc
|
||||
123
|
||||
{ "abc":"abc", "def":"123" }
|
||||
|
||||
prompt$ jsish -u sampler.jsi
|
||||
[PASS] sampler.jsi
|
||||
|
||||
prompt$ chmod +x sampler.jsi
|
||||
prompt$ ./sampler.jsi
|
||||
[PASS] sampler.jsi</pre>
|
||||
|
||||
''The operating system interpreter directive in sampler.jsi includes -u, so testing mode is the default run state for that script.''
|
||||
|
||||
Modules and packaging ('''provide''' and '''require''') is also part and parcel of Jsi development. Command option parsing, autoloading, versioning and builtin help is included in the Jsi module design along with other programmer and user friendly features.
|
||||
|
||||
Embedding Jsi in C or C++ applications starts out by simply including a single amalgamated C source file, '''jsi.c''', similar to the SQLite model. The sources are crafted to support compilation by either C or C++ compilers, without relying on '''extern "C"''' blocks.
|
||||
|
||||
Jsish includes database and websocket modules; SQLite, MySQL, libwebsockets. The interpreter also includes Zlib compressed Virtual File System features; support modules are included in an archive appended to the executable and mounted as '/zvfs/'. Deployment of entire applications can ship as a single file, including images and other normally external resources.
|
||||
|
||||
Jsish first appeared in 2015. The system was considered feature stable with the December 2017 release of version 2.4. Development is still active at time of writing, version 2.8.1 released in March 2019.
|
||||
|
||||
* https://jsish.org
|
||||
* https://jsish.org/fossil/jsi/doc/tip/www/home.wiki
|
||||
* https://en.wikipedia.org/wiki/Jsish
|
||||
2
Lang/Jsish/00-META.yaml
Normal file
2
Lang/Jsish/00-META.yaml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
from: http://rosettacode.org/wiki/Category:Jsish
|
||||
1
Lang/Jsish/99-bottles-of-beer
Symbolic link
1
Lang/Jsish/99-bottles-of-beer
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/99-bottles-of-beer/Jsish
|
||||
1
Lang/Jsish/A+B
Symbolic link
1
Lang/Jsish/A+B
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/A+B/Jsish
|
||||
1
Lang/Jsish/ABC-problem
Symbolic link
1
Lang/Jsish/ABC-problem
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/ABC-problem/Jsish
|
||||
1
Lang/Jsish/Abundant-deficient-and-perfect-number-classifications
Symbolic link
1
Lang/Jsish/Abundant-deficient-and-perfect-number-classifications
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Abundant-deficient-and-perfect-number-classifications/Jsish
|
||||
1
Lang/Jsish/Accumulator-factory
Symbolic link
1
Lang/Jsish/Accumulator-factory
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Accumulator-factory/Jsish
|
||||
1
Lang/Jsish/Ackermann-function
Symbolic link
1
Lang/Jsish/Ackermann-function
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Ackermann-function/Jsish
|
||||
1
Lang/Jsish/Align-columns
Symbolic link
1
Lang/Jsish/Align-columns
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Align-columns/Jsish
|
||||
1
Lang/Jsish/Anagrams
Symbolic link
1
Lang/Jsish/Anagrams
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Anagrams/Jsish
|
||||
1
Lang/Jsish/Angle-difference-between-two-bearings
Symbolic link
1
Lang/Jsish/Angle-difference-between-two-bearings
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Angle-difference-between-two-bearings/Jsish
|
||||
1
Lang/Jsish/Apply-a-callback-to-an-array
Symbolic link
1
Lang/Jsish/Apply-a-callback-to-an-array
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Apply-a-callback-to-an-array/Jsish
|
||||
1
Lang/Jsish/Arithmetic-Integer
Symbolic link
1
Lang/Jsish/Arithmetic-Integer
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arithmetic-Integer/Jsish
|
||||
1
Lang/Jsish/Arithmetic-evaluation
Symbolic link
1
Lang/Jsish/Arithmetic-evaluation
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arithmetic-evaluation/Jsish
|
||||
1
Lang/Jsish/Array-length
Symbolic link
1
Lang/Jsish/Array-length
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Array-length/Jsish
|
||||
1
Lang/Jsish/Arrays
Symbolic link
1
Lang/Jsish/Arrays
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Arrays/Jsish
|
||||
1
Lang/Jsish/Associative-array-Creation
Symbolic link
1
Lang/Jsish/Associative-array-Creation
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Associative-array-Creation/Jsish
|
||||
1
Lang/Jsish/Base64-decode-data
Symbolic link
1
Lang/Jsish/Base64-decode-data
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Base64-decode-data/Jsish
|
||||
1
Lang/Jsish/Binary-search
Symbolic link
1
Lang/Jsish/Binary-search
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Binary-search/Jsish
|
||||
1
Lang/Jsish/CRC-32
Symbolic link
1
Lang/Jsish/CRC-32
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/CRC-32/Jsish
|
||||
1
Lang/Jsish/CSV-to-HTML-translation
Symbolic link
1
Lang/Jsish/CSV-to-HTML-translation
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/CSV-to-HTML-translation/Jsish
|
||||
1
Lang/Jsish/Caesar-cipher
Symbolic link
1
Lang/Jsish/Caesar-cipher
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Caesar-cipher/Jsish
|
||||
1
Lang/Jsish/Call-a-function-in-a-shared-library
Symbolic link
1
Lang/Jsish/Call-a-function-in-a-shared-library
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Call-a-function-in-a-shared-library/Jsish
|
||||
1
Lang/Jsish/Check-input-device-is-a-terminal
Symbolic link
1
Lang/Jsish/Check-input-device-is-a-terminal
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Check-input-device-is-a-terminal/Jsish
|
||||
1
Lang/Jsish/Command-line-arguments
Symbolic link
1
Lang/Jsish/Command-line-arguments
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Command-line-arguments/Jsish
|
||||
1
Lang/Jsish/Comments
Symbolic link
1
Lang/Jsish/Comments
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Comments/Jsish
|
||||
1
Lang/Jsish/Compare-a-list-of-strings
Symbolic link
1
Lang/Jsish/Compare-a-list-of-strings
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Compare-a-list-of-strings/Jsish
|
||||
1
Lang/Jsish/Conways-Game-of-Life
Symbolic link
1
Lang/Jsish/Conways-Game-of-Life
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Conways-Game-of-Life/Jsish
|
||||
1
Lang/Jsish/Day-of-the-week
Symbolic link
1
Lang/Jsish/Day-of-the-week
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Day-of-the-week/Jsish
|
||||
1
Lang/Jsish/Detect-division-by-zero
Symbolic link
1
Lang/Jsish/Detect-division-by-zero
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Detect-division-by-zero/Jsish
|
||||
1
Lang/Jsish/Determine-if-only-one-instance-is-running
Symbolic link
1
Lang/Jsish/Determine-if-only-one-instance-is-running
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Determine-if-only-one-instance-is-running/Jsish
|
||||
1
Lang/Jsish/Diversity-prediction-theorem
Symbolic link
1
Lang/Jsish/Diversity-prediction-theorem
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Diversity-prediction-theorem/Jsish
|
||||
1
Lang/Jsish/Dot-product
Symbolic link
1
Lang/Jsish/Dot-product
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Dot-product/Jsish
|
||||
1
Lang/Jsish/Empty-string
Symbolic link
1
Lang/Jsish/Empty-string
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Empty-string/Jsish
|
||||
1
Lang/Jsish/Entropy
Symbolic link
1
Lang/Jsish/Entropy
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Entropy/Jsish
|
||||
1
Lang/Jsish/Environment-variables
Symbolic link
1
Lang/Jsish/Environment-variables
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Environment-variables/Jsish
|
||||
1
Lang/Jsish/Ethiopian-multiplication
Symbolic link
1
Lang/Jsish/Ethiopian-multiplication
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Ethiopian-multiplication/Jsish
|
||||
1
Lang/Jsish/Even-or-odd
Symbolic link
1
Lang/Jsish/Even-or-odd
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Even-or-odd/Jsish
|
||||
1
Lang/Jsish/Execute-Brain-
Symbolic link
1
Lang/Jsish/Execute-Brain-
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Execute-Brain-/Jsish
|
||||
1
Lang/Jsish/Factorial
Symbolic link
1
Lang/Jsish/Factorial
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Factorial/Jsish
|
||||
1
Lang/Jsish/File-modification-time
Symbolic link
1
Lang/Jsish/File-modification-time
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/File-modification-time/Jsish
|
||||
1
Lang/Jsish/Flatten-a-list
Symbolic link
1
Lang/Jsish/Flatten-a-list
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Flatten-a-list/Jsish
|
||||
1
Lang/Jsish/Four-bit-adder
Symbolic link
1
Lang/Jsish/Four-bit-adder
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Four-bit-adder/Jsish
|
||||
1
Lang/Jsish/Gamma-function
Symbolic link
1
Lang/Jsish/Gamma-function
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Gamma-function/Jsish
|
||||
1
Lang/Jsish/Generate-lower-case-ASCII-alphabet
Symbolic link
1
Lang/Jsish/Generate-lower-case-ASCII-alphabet
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Generate-lower-case-ASCII-alphabet/Jsish
|
||||
1
Lang/Jsish/Get-system-command-output
Symbolic link
1
Lang/Jsish/Get-system-command-output
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Get-system-command-output/Jsish
|
||||
1
Lang/Jsish/Globally-replace-text-in-several-files
Symbolic link
1
Lang/Jsish/Globally-replace-text-in-several-files
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Globally-replace-text-in-several-files/Jsish
|
||||
1
Lang/Jsish/Greatest-subsequential-sum
Symbolic link
1
Lang/Jsish/Greatest-subsequential-sum
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Greatest-subsequential-sum/Jsish
|
||||
1
Lang/Jsish/Guess-the-number
Symbolic link
1
Lang/Jsish/Guess-the-number
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Guess-the-number/Jsish
|
||||
1
Lang/Jsish/HTTP
Symbolic link
1
Lang/Jsish/HTTP
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/HTTP/Jsish
|
||||
1
Lang/Jsish/Handle-a-signal
Symbolic link
1
Lang/Jsish/Handle-a-signal
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Handle-a-signal/Jsish
|
||||
1
Lang/Jsish/Hash-from-two-arrays
Symbolic link
1
Lang/Jsish/Hash-from-two-arrays
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Hash-from-two-arrays/Jsish
|
||||
1
Lang/Jsish/Haversine-formula
Symbolic link
1
Lang/Jsish/Haversine-formula
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Haversine-formula/Jsish
|
||||
1
Lang/Jsish/Hello-world-Graphical
Symbolic link
1
Lang/Jsish/Hello-world-Graphical
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Hello-world-Graphical/Jsish
|
||||
1
Lang/Jsish/Hello-world-Newline-omission
Symbolic link
1
Lang/Jsish/Hello-world-Newline-omission
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Hello-world-Newline-omission/Jsish
|
||||
1
Lang/Jsish/Hello-world-Text
Symbolic link
1
Lang/Jsish/Hello-world-Text
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Hello-world-Text/Jsish
|
||||
1
Lang/Jsish/Hostname
Symbolic link
1
Lang/Jsish/Hostname
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Hostname/Jsish
|
||||
1
Lang/Jsish/IBAN
Symbolic link
1
Lang/Jsish/IBAN
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/IBAN/Jsish
|
||||
1
Lang/Jsish/Identity-matrix
Symbolic link
1
Lang/Jsish/Identity-matrix
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Identity-matrix/Jsish
|
||||
1
Lang/Jsish/Include-a-file
Symbolic link
1
Lang/Jsish/Include-a-file
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Include-a-file/Jsish
|
||||
1
Lang/Jsish/Increment-a-numerical-string
Symbolic link
1
Lang/Jsish/Increment-a-numerical-string
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Increment-a-numerical-string/Jsish
|
||||
1
Lang/Jsish/Input-loop
Symbolic link
1
Lang/Jsish/Input-loop
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Input-loop/Jsish
|
||||
1
Lang/Jsish/Introspection
Symbolic link
1
Lang/Jsish/Introspection
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Introspection/Jsish
|
||||
1
Lang/Jsish/JSON
Symbolic link
1
Lang/Jsish/JSON
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/JSON/Jsish
|
||||
1
Lang/Jsish/JortSort
Symbolic link
1
Lang/Jsish/JortSort
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/JortSort/Jsish
|
||||
1
Lang/Jsish/Levenshtein-distance
Symbolic link
1
Lang/Jsish/Levenshtein-distance
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Levenshtein-distance/Jsish
|
||||
1
Lang/Jsish/Loop-over-multiple-arrays-simultaneously
Symbolic link
1
Lang/Jsish/Loop-over-multiple-arrays-simultaneously
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Loop-over-multiple-arrays-simultaneously/Jsish
|
||||
1
Lang/Jsish/Loops-Continue
Symbolic link
1
Lang/Jsish/Loops-Continue
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Loops-Continue/Jsish
|
||||
1
Lang/Jsish/Loops-For
Symbolic link
1
Lang/Jsish/Loops-For
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Loops-For/Jsish
|
||||
1
Lang/Jsish/Loops-Foreach
Symbolic link
1
Lang/Jsish/Loops-Foreach
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Loops-Foreach/Jsish
|
||||
1
Lang/Jsish/Loops-Infinite
Symbolic link
1
Lang/Jsish/Loops-Infinite
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Loops-Infinite/Jsish
|
||||
1
Lang/Jsish/Loops-Nested
Symbolic link
1
Lang/Jsish/Loops-Nested
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Loops-Nested/Jsish
|
||||
1
Lang/Jsish/Loops-While
Symbolic link
1
Lang/Jsish/Loops-While
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Loops-While/Jsish
|
||||
1
Lang/Jsish/MD5
Symbolic link
1
Lang/Jsish/MD5
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/MD5/Jsish
|
||||
1
Lang/Jsish/Man-or-boy-test
Symbolic link
1
Lang/Jsish/Man-or-boy-test
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Man-or-boy-test/Jsish
|
||||
1
Lang/Jsish/Matrix-exponentiation-operator
Symbolic link
1
Lang/Jsish/Matrix-exponentiation-operator
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Matrix-exponentiation-operator/Jsish
|
||||
1
Lang/Jsish/Matrix-multiplication
Symbolic link
1
Lang/Jsish/Matrix-multiplication
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Matrix-multiplication/Jsish
|
||||
1
Lang/Jsish/Matrix-transposition
Symbolic link
1
Lang/Jsish/Matrix-transposition
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Matrix-transposition/Jsish
|
||||
1
Lang/Jsish/Monads-Writer-monad
Symbolic link
1
Lang/Jsish/Monads-Writer-monad
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Monads-Writer-monad/Jsish
|
||||
1
Lang/Jsish/Monte-Carlo-methods
Symbolic link
1
Lang/Jsish/Monte-Carlo-methods
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Monte-Carlo-methods/Jsish
|
||||
1
Lang/Jsish/Multiplication-tables
Symbolic link
1
Lang/Jsish/Multiplication-tables
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Multiplication-tables/Jsish
|
||||
1
Lang/Jsish/Mutual-recursion
Symbolic link
1
Lang/Jsish/Mutual-recursion
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Mutual-recursion/Jsish
|
||||
1
Lang/Jsish/Nested-function
Symbolic link
1
Lang/Jsish/Nested-function
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Nested-function/Jsish
|
||||
1
Lang/Jsish/Null-object
Symbolic link
1
Lang/Jsish/Null-object
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Null-object/Jsish
|
||||
1
Lang/Jsish/Palindrome-detection
Symbolic link
1
Lang/Jsish/Palindrome-detection
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Palindrome-detection/Jsish
|
||||
1
Lang/Jsish/Program-name
Symbolic link
1
Lang/Jsish/Program-name
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Program-name/Jsish
|
||||
1
Lang/Jsish/Program-termination
Symbolic link
1
Lang/Jsish/Program-termination
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Program-termination/Jsish
|
||||
1
Lang/Jsish/Quine
Symbolic link
1
Lang/Jsish/Quine
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Quine/Jsish
|
||||
1
Lang/Jsish/Range-expansion
Symbolic link
1
Lang/Jsish/Range-expansion
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Range-expansion/Jsish
|
||||
1
Lang/Jsish/Range-extraction
Symbolic link
1
Lang/Jsish/Range-extraction
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Range-extraction/Jsish
|
||||
1
Lang/Jsish/Rate-counter
Symbolic link
1
Lang/Jsish/Rate-counter
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Rate-counter/Jsish
|
||||
1
Lang/Jsish/Read-a-file-line-by-line
Symbolic link
1
Lang/Jsish/Read-a-file-line-by-line
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Read-a-file-line-by-line/Jsish
|
||||
1
Lang/Jsish/Read-entire-file
Symbolic link
1
Lang/Jsish/Read-entire-file
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Read-entire-file/Jsish
|
||||
1
Lang/Jsish/Real-constants-and-functions
Symbolic link
1
Lang/Jsish/Real-constants-and-functions
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Real-constants-and-functions/Jsish
|
||||
1
Lang/Jsish/Regular-expressions
Symbolic link
1
Lang/Jsish/Regular-expressions
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Regular-expressions/Jsish
|
||||
1
Lang/Jsish/Rename-a-file
Symbolic link
1
Lang/Jsish/Rename-a-file
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Rename-a-file/Jsish
|
||||
1
Lang/Jsish/Reverse-a-string
Symbolic link
1
Lang/Jsish/Reverse-a-string
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Reverse-a-string/Jsish
|
||||
1
Lang/Jsish/Reverse-words-in-a-string
Symbolic link
1
Lang/Jsish/Reverse-words-in-a-string
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Reverse-words-in-a-string/Jsish
|
||||
1
Lang/Jsish/Roman-numerals-Encode
Symbolic link
1
Lang/Jsish/Roman-numerals-Encode
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Roman-numerals-Encode/Jsish
|
||||
1
Lang/Jsish/Rot-13
Symbolic link
1
Lang/Jsish/Rot-13
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../Task/Rot-13/Jsish
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue