Skip to content
Snippets Groups Projects
Commit 2fe329d2 authored by Jeremy Soller's avatar Jeremy Soller Committed by GitHub
Browse files

Merge pull request #83 from ReinierMaas/patch-2

STDOUT would be $identifier
parents 8b9816d3 91b68a89
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ echo '$identifier' # stdout: `Some string`
echo identifier # stdout: `identifier`
# the dollar sign `$` can be escaped with a backslash `\` to echo $identifier:
echo \$identifier #stdout: ``\$identifier`
echo \$identifier #stdout: `$identifier`
# You can also remove a variable:
drop $foo # no value will be available anymore for the identifier `$foo`
......@@ -40,7 +40,7 @@ let
echo ${Variable}
# This is useful when you for example
# you want to have a character right after your variable:
let Name=John; echo Hello, ${Name}!
let Name=John; echo Hello, ${Name}! # stdout: `Hello, John!`
# Bracket expansion:
echo h{i,aa,ooo} # stdout: `hi, haa, hooo`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment