diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2019-08-03 00:12:15 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-03 00:12:15 +0530 |
commit | 6b05a21914e664edfcf7450e49eb78731f62ad8b (patch) | |
tree | c3d9e1e65e359ca43630a6e386d02845c4b5dce6 | |
parent | bc776d9af17aa62fea676dbc3b9c4d73999bef98 (diff) | |
parent | 65fe2371299ed9baf0cd488263333615baf7b97d (diff) |
Merge pull request #3555 from rgxgr/patch-1
[wolfram\en] Correct output
-rw-r--r-- | wolfram.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wolfram.html.markdown b/wolfram.html.markdown index 4514006d..5fddbc82 100644 --- a/wolfram.html.markdown +++ b/wolfram.html.markdown @@ -123,8 +123,8 @@ myHash[["Green"]] (* 2, use it *) myHash[["Green"]] := 5 (* 5, update it *) myHash[["Puce"]] := 3.5 (* 3.5, extend it *) KeyDropFrom[myHash, "Green"] (* Wipes out key Green *) -Keys[myHash] (* {Red} *) -Values[myHash] (* {1} *) +Keys[myHash] (* {Red, Puce} *) +Values[myHash] (* {1, 3.5} *) (* And you can't do any demo of Wolfram without showing this off *) Manipulate[y^2, {y, 0, 20}] (* Return a reactive user interface that displays y^2 |