Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
using Gee;
|
||||
|
||||
void main(){
|
||||
var map = new HashMap<string, int>(); // creates a HashMap with keys of type string, and values of type int
|
||||
|
||||
// two methods to set key,value pair
|
||||
map["one"] = 1;
|
||||
map["two"] = 2;
|
||||
|
||||
map.set("four", 4);
|
||||
map.set("five", 5);
|
||||
|
||||
// two methods of getting key,value pair
|
||||
stdout.printf("%d\n", map["one"]);
|
||||
|
||||
stdout.printf("%d\n", map.get("two"));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue