gdritter repos virgil / master examples / NoCode.vgl
master

Tree @master (Download .tar.gz)

NoCode.vgl @masterraw · history · blame

{

  # comments start with an octothorpe
  # objects are created with key-value pairs

  "one": 1,    # integers

  "two": 2.0,  # floats

  # lists use square brackets
  "three":
  [
      "s", # the string syntax is identical to JSON's
	  "s",
	  "0", # trailing commas are allowed
  ],

}