/gist:7f2fee97d56c5acc1587 Secret
Created
December 23, 2015 20:36
Star
You must be signed in to star a gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ============EXPECTED========== | |
| { | |
| amount => [ | |
| 4.95e0.Num, | |
| 4.85e0.Num, | |
| 2.4e0.Num, | |
| ], | |
| description => [ | |
| "Hot beef burrito".Str, | |
| "Mild fish taco".Str+{NativeCall::ExplicitlyManagedString}, | |
| "Medium size orange juice".Str+{NativeCall::ExplicitlyManagedString}, | |
| ], | |
| name => [ | |
| "BUBH".Str, | |
| "TAFM".Str+{NativeCall::ExplicitlyManagedString}, | |
| "BEOM".Str+{NativeCall::ExplicitlyManagedString}, | |
| ], | |
| price => [ | |
| 4.95e0.Num, | |
| 4.85e0.Num, | |
| 1.2e0.Num, | |
| ], | |
| quantity => [ | |
| 1.Int, | |
| 1.Int, | |
| 2.Int, | |
| ], | |
| } | |
| ============GOT=============== | |
| { | |
| amount => [ | |
| 4.95e0.Num, | |
| 4.85e0.Num, | |
| 2.4e0.Num, | |
| ], | |
| description => [ | |
| "Hot beef burrito".Str, | |
| "Mild fish taco".Str, | |
| "Medium size orange juice".Str, | |
| ], | |
| name => [ | |
| "BUBH".Str, | |
| "TAFM".Str, | |
| "BEOM".Str, | |
| ], | |
| price => [ | |
| 4.95e0.Num, | |
| 4.85e0.Num, | |
| 1.2e0.Num, | |
| ], | |
| quantity => [ | |
| 1.Int, | |
| 1.Int, | |
| 2.Int, | |
| ], | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment