Skip to content

Instantly share code, notes, and snippets.

@cschneid
Forked from benkolera/gist:9655952
Created March 20, 2014 02:42
Show Gist options
  • Save cschneid/9656180 to your computer and use it in GitHub Desktop.
Save cschneid/9656180 to your computer and use it in GitHub Desktop.
scala> import argonaut._, Argonaut._
import argonaut._
import Argonaut._
scala> Map( "foo" -> List("bar","baz") , "test" -> List() ) .jencode.spaces2
res7: String =
{
"foo" : [
"bar",
"baz"
],
"test" : [
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment