Browse Source

Initial test for constructing map, using an array bigger than 1 item.

Playing around in the script file.
master
Craig Oates 6 years ago
parent
commit
cafd7c9052
  1. 7
      WetPancake/Script.fsx

7
WetPancake/Script.fsx

@ -85,10 +85,11 @@ let ds_map2 =
result
let ds_map3 = ConstructMap ds_map ds_text
let ds_text2 = [
[|"This"; "is"; "the"; "first"; "test"; "string."|]
[|"This"; "is"; "the"; "first"; "test"; "string.";|]
[|"This"; "is"; "the"; "second"; "test"; "string";|]
[|"This"; "is"; "the"; "third"; "test"; "string";|]
]
let ds_map4 = ConstructMap // <-- finish building the map
let ds_start = SeperateStartWords ds_map3
let ds_map4 = ConstructMap ds_map ds_text2.[1]
//ConstructMap ds_map ds_text2
//let ds_start = SeperateStartWords ds_map3
// YOU ARE UP TO HERE. YOU NEED TO BUILD A BIGGER MAP TO TEST THE START WORD CODE.
Loading…
Cancel
Save