How I can set a value for a key in hashtable. Can we add a set method in forge. For now i have to remove and add key with new value.
Can we do something like this:
// Setting the value associated with key "c" in hashtable "mytable".
myTable["c"] = "C#";
myTable[
"c"
] =
"C#"
;