File tree 6 files changed +27
-17
lines changed
6 files changed +27
-17
lines changed Original file line number Diff line number Diff line change @@ -3,21 +3,20 @@ name: Linter
3
3
on : [pull_request]
4
4
5
5
jobs :
6
- markdown-linter :
7
- name : " Markdown Linter"
8
- runs-on : ubuntu-latest
9
- steps :
10
- - uses : actions/checkout@v2
6
+ # markdown-linter:
7
+ # name: "Markdown Linter"
8
+ # runs-on: ubuntu-latest
9
+ # steps:
10
+ # - uses: actions/checkout@v2
11
+ # - name: markdownlint-cli
12
+ # uses: nosborn/github-action-markdown-cli@v3.2.0
13
+ # with:
14
+ # files: .
15
+ # config_file: .markdownlint.yaml
11
16
12
- - name : markdownlint-cli
13
- uses : nosborn/github-action-markdown-cli@v3.2.0
14
- with :
15
- files : .
16
- config_file : .markdownlint.yaml
17
-
18
- markdown-link-check :
19
- name : " Markdown Link Checker"
20
- runs-on : ubuntu-latest
21
- steps :
22
- - uses : actions/checkout@v2
23
- - uses : gaurav-nelson/github-action-markdown-link-check@1.0.14
17
+ # markdown-link-check:
18
+ # name: "Markdown Link Checker"
19
+ # runs-on: ubuntu-latest
20
+ # steps:
21
+ # - uses: actions/checkout@v2
22
+ # - uses: gaurav-nelson/github-action-markdown-link-check@1.0.14
Original file line number Diff line number Diff line change 447
447
- [ Integer to a Base 16 String] ( ./integers_ii/integer_to_a_base_16_string.md )
448
448
- [ Underscores in Integer Literals] ( ./integers_ii/underscores_in_integer_literals.md )
449
449
450
+ - [ 🚧 Construction Zone 🚧] ( )
451
+
450
452
# Interactive Programs III
451
453
452
454
- [ Files] ( ./files.md )
@@ -522,6 +524,9 @@ Make them do one. -->
522
524
- [ Switch III] ( ./switch_iii.md )
523
525
- [ Fallthrough] ( ./switch_iii/fallthrough.md )
524
526
- [ break] ( ./switch_iii/break.md )
527
+ - [ default] ( ./switch_iii/default.md )
528
+ - [ return] ( ./switch_iii/return.md )
529
+ - [ yield] ( ./switch_iii/yield.md )
525
530
- [ Recursion] ( ./recursion.md )
526
531
- [ Disclaimer] ( ./recursion/disclaimer.md )
527
532
- [ Base Case] ( ./recursion/base_case.md )
Original file line number Diff line number Diff line change
1
+ # default
Original file line number Diff line number Diff line change 1
1
# Fallthrough
2
+
3
+ If the code for a given label does not ` break `
4
+ or ` return ` then
Original file line number Diff line number Diff line change
1
+ # return
Original file line number Diff line number Diff line change
1
+ # yield
You can’t perform that action at this time.
0 commit comments