diff options
author | Cedric HT <cedric_hothanh@bitbucket.org> | 2016-01-23 11:32:02 +0100 |
---|---|---|
committer | Cedric HT <cedric_hothanh@bitbucket.org> | 2016-01-23 11:32:02 +0100 |
commit | 3ea060e936b4260ab57abfee6de9dabc3232d6fd (patch) | |
tree | d43845d688f0a4f5419c125d63ef6ec57eb31cb0 /fr-fr | |
parent | a3e68ea324716f1f018888782b357812be3865a2 (diff) |
Corrected code results in comments
In subsection on hash tables.
Diffstat (limited to 'fr-fr')
-rw-r--r-- | fr-fr/wolfram-fr.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fr-fr/wolfram-fr.html.markdown b/fr-fr/wolfram-fr.html.markdown index ea07aae5..9cdbabcc 100644 --- a/fr-fr/wolfram-fr.html.markdown +++ b/fr-fr/wolfram-fr.html.markdown @@ -150,8 +150,8 @@ table[["Vert"]] (* 2, l'utilise *) table[["Vert"]] := 5 (* 5, la modifie *) table[["Bleu"]] := 3.5 (* 3.5, l'étend *) KeyDropFrom[table, "Vert"] (* Supprime la clé "Vert" *) -Keys[table] (* {Rouge} *) -Values[table] (* {1} *) +Keys[table] (* {Rouge, Bleu} *) +Values[table] (* {1, 3.5} *) (* Pour finir, toute bonne démonstration du langage Wolfram contient un Manipulate ! *) |