Skip to content

Instantly share code, notes, and snippets.

@Skarsnik
Created December 23, 2015 20:36
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 Skarsnik/7f2fee97d56c5acc1587 to your computer and use it in GitHub Desktop.
Save Skarsnik/7f2fee97d56c5acc1587 to your computer and use it in GitHub Desktop.
============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