From 58c04852331f11ca59b9d3f699a31246e5052db1 Mon Sep 17 00:00:00 2001 From: JoeStrout Date: Fri, 6 Oct 2023 08:16:39 -0700 Subject: [PATCH] Updated formatting in some of the MiniScript README files; commented out a Mini Micro -specific call in splat.ms. --- 00_Alternate_Languages/81_Splat/MiniScript/README.md | 6 ++++-- 00_Alternate_Languages/81_Splat/MiniScript/splat.ms | 2 +- 00_Alternate_Languages/82_Stars/MiniScript/README.md | 8 +++++--- .../89_Tic-Tac-Toe/MiniScript/README.md | 8 +++++--- 00_Alternate_Languages/90_Tower/MiniScript/README.md | 8 +++++--- 00_Alternate_Languages/91_Train/MiniScript/README.md | 5 +++-- 00_Alternate_Languages/93_23_Matches/MiniScript/README.md | 8 +++++--- 7 files changed, 28 insertions(+), 17 deletions(-) diff --git a/00_Alternate_Languages/81_Splat/MiniScript/README.md b/00_Alternate_Languages/81_Splat/MiniScript/README.md index f7d3b016..2d133f87 100644 --- a/00_Alternate_Languages/81_Splat/MiniScript/README.md +++ b/00_Alternate_Languages/81_Splat/MiniScript/README.md @@ -6,11 +6,13 @@ Ways to play: 1. Command-Line MiniScript: Download for your system from https://miniscript.org/cmdline/, install, and then run the program with a command such as: - +``` miniscript splat.ms +``` 2. Mini Micro: Download Mini Micro from https://miniscript.org/MiniMicro/, launch, and then click the top disk slot and chose "Mount Folder..." Select the folder containing the MiniScript program and this README file. Then, at the Mini Micro command prompt, enter: - +``` load "splat" run +``` diff --git a/00_Alternate_Languages/81_Splat/MiniScript/splat.ms b/00_Alternate_Languages/81_Splat/MiniScript/splat.ms index befff431..d38ddd23 100644 --- a/00_Alternate_Languages/81_Splat/MiniScript/splat.ms +++ b/00_Alternate_Languages/81_Splat/MiniScript/splat.ms @@ -9,7 +9,7 @@ splatMsg = ["Requiescat in pace.", "May the Angel of Heaven lead you into Paradi "Pushing up daisies.", "Easy come, easy go."] history = [] -clear +//clear // (works on Mini Micro only) print " " * 33 + "Splat" print " " * 15 + "Creative Computing Morristown, New Jersey" print;print;print diff --git a/00_Alternate_Languages/82_Stars/MiniScript/README.md b/00_Alternate_Languages/82_Stars/MiniScript/README.md index bcbbd39a..2e4b6d02 100644 --- a/00_Alternate_Languages/82_Stars/MiniScript/README.md +++ b/00_Alternate_Languages/82_Stars/MiniScript/README.md @@ -6,11 +6,13 @@ Ways to play: 1. Command-Line MiniScript: Download for your system from https://miniscript.org/cmdline/, install, and then run the program with a command such as: - +``` miniscript stars.ms +``` 2. Mini Micro: Download Mini Micro from https://miniscript.org/MiniMicro/, launch, and then click the top disk slot and chose "Mount Folder..." Select the folder containing the MiniScript program and this README file. Then, at the Mini Micro command prompt, enter: - +``` load "stars" - run \ No newline at end of file + run +``` diff --git a/00_Alternate_Languages/89_Tic-Tac-Toe/MiniScript/README.md b/00_Alternate_Languages/89_Tic-Tac-Toe/MiniScript/README.md index 6774c0d9..526bbfb3 100644 --- a/00_Alternate_Languages/89_Tic-Tac-Toe/MiniScript/README.md +++ b/00_Alternate_Languages/89_Tic-Tac-Toe/MiniScript/README.md @@ -6,11 +6,13 @@ Ways to play: 1. Command-Line MiniScript: Download for your system from https://miniscript.org/cmdline/, install, and then run the program with a command such as: - +``` miniscript tictactoe.ms +``` 2. Mini Micro: Download Mini Micro from https://miniscript.org/MiniMicro/, launch, and then click the top disk slot and chose "Mount Folder..." Select the folder containing the MiniScript program and this README file. Then, at the Mini Micro command prompt, enter: - +``` load "tictactoe" - run \ No newline at end of file + run +``` \ No newline at end of file diff --git a/00_Alternate_Languages/90_Tower/MiniScript/README.md b/00_Alternate_Languages/90_Tower/MiniScript/README.md index d8c97a89..fc967203 100644 --- a/00_Alternate_Languages/90_Tower/MiniScript/README.md +++ b/00_Alternate_Languages/90_Tower/MiniScript/README.md @@ -6,11 +6,13 @@ Ways to play: 1. Command-Line MiniScript: Download for your system from https://miniscript.org/cmdline/, install, and then run the program with a command such as: - +``` miniscript tower.ms +``` 2. Mini Micro: Download Mini Micro from https://miniscript.org/MiniMicro/, launch, and then click the top disk slot and chose "Mount Folder..." Select the folder containing the MiniScript program and this README file. Then, at the Mini Micro command prompt, enter: - +``` load "tower" - run \ No newline at end of file + run +``` diff --git a/00_Alternate_Languages/91_Train/MiniScript/README.md b/00_Alternate_Languages/91_Train/MiniScript/README.md index a1970158..13928ccc 100644 --- a/00_Alternate_Languages/91_Train/MiniScript/README.md +++ b/00_Alternate_Languages/91_Train/MiniScript/README.md @@ -4,6 +4,9 @@ Conversion to [MiniScript](https://miniscript.org). Ways to play: +0. "Try-It!" page on the web: +Go to https://miniscript.org/tryit/, clear the default program from the source code editor, paste in the contents of train.ms, and click the "Run Script" button. + 1. Command-Line MiniScript: Download for your system from https://miniscript.org/cmdline/, install, and then run the program with a command such as: @@ -17,5 +20,3 @@ Download Mini Micro from https://miniscript.org/MiniMicro/, launch, and then cli load "train" run ``` -3. "Try-It!" page on the web: -Go to https://miniscript.org/tryit/, clear the default program from the source code editor, paste in the contents of train.ms, and click the "Run Script" button. diff --git a/00_Alternate_Languages/93_23_Matches/MiniScript/README.md b/00_Alternate_Languages/93_23_Matches/MiniScript/README.md index 9156a730..8b9bc04c 100644 --- a/00_Alternate_Languages/93_23_Matches/MiniScript/README.md +++ b/00_Alternate_Languages/93_23_Matches/MiniScript/README.md @@ -6,11 +6,13 @@ Ways to play: 1. Command-Line MiniScript: Download for your system from https://miniscript.org/cmdline/, install, and then run the program with a command such as: - +``` miniscript 23matches.ms +``` 2. Mini Micro: Download Mini Micro from https://miniscript.org/MiniMicro/, launch, and then click the top disk slot and chose "Mount Folder..." Select the folder containing the MiniScript program and this README file. Then, at the Mini Micro command prompt, enter: - +``` load "23matches" - run \ No newline at end of file + run +```