Skip to content

Instantly share code, notes, and snippets.

@piuccio
Last active December 12, 2015 05:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save piuccio/4721822 to your computer and use it in GitHub Desktop.
Save piuccio/4721822 to your computer and use it in GitHub Desktop.
hashspace Foreach loop and json interaction
// The model is accessible with the name `vscope`
//
// `json` has also methods to handle arrays
// - push
// - splice
// - shift
json.push(vscope.things, "Mangos");
log();
hsp.refresh();
# template main(things)
Remember to buy:
# foreach oneThing in things
<br/>
# if oneThing_isfirst
First of all
# else
# if oneThing_islast
and last
# else
then
# /if
# /if
<strong>{oneThing}</strong>
# /foreach
# /template
display(main, [["Apples", "Pears", "Bananas"]]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment