about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--subx/Readme.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/subx/Readme.md b/subx/Readme.md
index ed09d502..de7a0fa7 100644
--- a/subx/Readme.md
+++ b/subx/Readme.md
@@ -21,7 +21,7 @@ by:
    native execution (which will also work), but there's more sanity checking,
    and more descriptive error messages for common low-level problems.
 
-   ```
+   ```sh
    $ ./subx translate examples/ex1.subx -o examples/ex1
    $ ./examples/ex1  # only on Linux
    $ echo $?
@@ -35,7 +35,7 @@ by:
    very little to do, making it feasible to reimplement in itself. Programmers
    have to explicitly specify all opcodes and operands.
 
-   ```
+   ```sh (just for syntax highlighting)
    # exit(42)
    bb/copy-to-EBX  0x2a/imm32  # 42 in hex
    b8/copy-to-EAX  1/imm32/exit
@@ -142,7 +142,7 @@ useful to catch such errors early.
 
 Try running this example now:
 
-```
+```sh
 $ ./subx translate examples/ex3.subx -o examples/ex3
 $ ./subx run examples/ex3
 $ echo $?
@@ -151,7 +151,7 @@ $ echo $?
 
 If you're on Linux you can also run it natively:
 
-```
+```sh
 $ ./examples/ex3
 $ echo $?
 55
='#n136'>136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174