Skip to content

Update function reference of command with s #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 47 commits into from
Aug 22, 2023
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
386431e
Update 1523-system-sbver.markdown
Joe7M Jul 31, 2023
a155d35
Update 548-data-search.markdown
Joe7M Aug 1, 2023
89b3ca0
Update 750-math-sec.markdown
Joe7M Aug 1, 2023
3592329
Update 751-math-sech.markdown
Joe7M Aug 1, 2023
fefc652
Update 597-file-seek.markdown
Joe7M Aug 2, 2023
3d654e0
Update 610-file-seek.markdown
Joe7M Aug 2, 2023
c6e5c76
Update 752-math-segcos.markdown
Joe7M Aug 2, 2023
c94e42a
Update 754-math-segsin.markdown
Joe7M Aug 2, 2023
4180480
Merge branch 'smallbasic:master' into master
Joe7M Aug 3, 2023
96143c6
Update 753-math-seglen.markdown
Joe7M Aug 3, 2023
40cb0f5
Update 655-language-select.markdown
Joe7M Aug 3, 2023
07eec57
Update 1734-system-self.markdown
Joe7M Aug 3, 2023
d98011f
Update 755-math-seq.markdown
Joe7M Aug 3, 2023
8b3382d
Update 756-math-sgn.markdown
Joe7M Aug 3, 2023
70caf36
Update 757-math-sin.markdown
Joe7M Aug 7, 2023
f2761a3
Update 758-math-sinh.markdown
Joe7M Aug 8, 2023
aeac805
Update 768-string-sinput.markdown
Joe7M Aug 10, 2023
10e82df
Update 549-data-sort.markdown
Joe7M Aug 10, 2023
63d9b63
Update 536-console-sound.markdown
Joe7M Aug 11, 2023
a2fee11
Update 796-string-space.markdown
Joe7M Aug 11, 2023
8f7a5e8
Update 796-string-space.markdown
Joe7M Aug 11, 2023
855e996
Update 797-string-spc.markdown
Joe7M Aug 11, 2023
4720de4
Update 769-string-split.markdown
Joe7M Aug 11, 2023
5ea0910
Update 770-string-sprint.markdown
Joe7M Aug 11, 2023
56afc33
Update 759-math-sqr.markdown
Joe7M Aug 14, 2023
836ca76
Update 798-string-squeeze.markdown
Joe7M Aug 14, 2023
697f86e
Update 760-math-statmean.markdown
Joe7M Aug 14, 2023
b050d8e
Update 760-math-statmean.markdown
Joe7M Aug 15, 2023
2de1f0b
Update 761-math-statmeandev.markdown
Joe7M Aug 15, 2023
2fd3d8f
Update 1801-math-statmedian.markdown
Joe7M Aug 15, 2023
9e13838
Update 762-math-statspreadp.markdown
Joe7M Aug 15, 2023
2dc77be
Update 763-math-statspreads.markdown
Joe7M Aug 15, 2023
b7118e6
Update 1800-math-statstd.markdown
Joe7M Aug 15, 2023
29bcfd3
Update 1421-language-step.markdown
Joe7M Aug 15, 2023
47fb2dc
Update 656-language-stop.markdown
Joe7M Aug 20, 2023
3607f1b
Update 799-string-str.markdown
Joe7M Aug 20, 2023
b8d20b1
Update 800-string-string.markdown
Joe7M Aug 20, 2023
dd790ce
Update 651-language-func.markdown
Joe7M Aug 20, 2023
ef61555
Update 657-language-sub.markdown
Joe7M Aug 22, 2023
90d3386
Update 764-math-sum.markdown
Joe7M Aug 22, 2023
18f9423
Update 765-math-sumsq.markdown
Joe7M Aug 22, 2023
8cc7201
Update 550-data-swap.markdown
Joe7M Aug 22, 2023
631df64
Create language_support_sublimetext.markdown
Joe7M Aug 22, 2023
ae581dd
Create language_support_kdekate.markdown
Joe7M Aug 22, 2023
ca77f1b
Update language_support_sublimetext.markdown
Joe7M Aug 22, 2023
772049d
Update language_support_vscode.markdown
Joe7M Aug 22, 2023
6a2331a
Update language_support.markdown
Joe7M Aug 22, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update 655-language-select.markdown
  • Loading branch information
Joe7M authored Aug 3, 2023
commit 40cb0f550e1cb4501ea43ccaebdb322a85a8ef1c
12 changes: 6 additions & 6 deletions _build/reference/655-language-select.markdown
Original file line number Diff line number Diff line change
@@ -2,12 +2,12 @@

> SELECT CASE expr

Perform multiple tests on the expression. Offers a more concise syntax to writing successive IF tests.
Once a case statement is fullfilled the select-case structure will be exited and all following case statements will not anymore be tested.
Perform multiple tests on the expression `expr`. Offers a more concise syntax to writing successive IF tests.
Once a case statement is fullfilled the select-case structure will be exited and all following case statements will not be tested anymore.

See also IF ... THEN ... ELIF ... ELSE ... FI structure.

Example 1: Basic select-case expression
### Example 1: Basic select-case expression

```
x = 12 ' Change value to see what happens
@@ -21,7 +21,7 @@ select case x
end select
```

Example 2: Exit of a select structure once a test was successful
### Example 2: Exit of a select structure once a test was successful

```
x = 2
@@ -33,7 +33,7 @@ select case x
end select
```

Example 3: Use IFF to check a range
### Example 3: Use IFF to check a range

```
x = 4 ' Change value to see what happens
@@ -45,7 +45,7 @@ select case x
end select
```

Example 4: Using functions
### Example 4: Using functions

```
func even(x)