diff --git a/README.md b/README.md index bd69496..f8f2141 100644 --- a/README.md +++ b/README.md @@ -18,27 +18,20 @@ Imagine, for a moment, that you are on Mars and need to perform a data search in 1 : ################### 2 : ### Hello Earth ### 3 : ################### -4 : # HINT START -5 : # - thermal measurements -6 : # - gravity measurements -7 : # - gravity fluctuations -8 : # HINT END -9 : proc hello_earth {} { -10 : puts "Hello Earth, does localized tempurature variations alter specific gravity?" -11 : } -12 : hello_earth +4 : array set GHINT ["thermal measurements" "gravity measurements" "gravity fluctuations"] +5 : proc hello_earth {} { +6 : puts "Hello Earth, does localized tempurature variations alter specific gravity?" +7 : } +8 : hello_earth ``` -Lines 1 - 3 are simple comments +Lines 1 - 3 are simple comments. -Line 4 indicates the start of the hints. +Line 4 sets the hint(s) as an array. -Lines 5 - 7 are a list of hints that the router will use to determine which router(s) may have domain specific information. +Lines 5 - 7 defines a procedure called hello_earth that will perform the actual search -Line 8 indicates the end of the hints. +Line 8 executes the hello_earth procedure defined above. -Lines 9 - 11 are a tcl procedure that will be executed on the worker before sending the results back to the client. - -Line 12 executes the procedure defined above. ## History More information about Agent TCL / D'Agents can be found in the original [documentation](http://www.cs.dartmouth.edu/~dfk/agents/pub/agents/doc.5.1.ps.gz), and in the project's [wiki](https://git.dragonheim.net/dragonheim/gagent/wiki/_pages).