Skip to content

Instantly share code, notes, and snippets.

@Olian04
Created January 16, 2020 00:17
Show Gist options
  • Save Olian04/c7a3e2838a00d3c6837b3943c3ad6eb2 to your computer and use it in GitHub Desktop.
Save Olian04/c7a3e2838a00d3c6837b3943c3ad6eb2 to your computer and use it in GitHub Desktop.
const r1 = #{
a: 1,
b: 2,
c: 3,
};
const r2 = #{
a: #{
b: #{
c: 123,
},
d: 456,
},
e: 789,
};
const t1 = #[];
const t2 = #[1,2,3];
const t3 = #[1, #[2, 3, #[4], 5], 6];
const r1 = {|
a: 1,
b: 2,
c: 3,
|};
const r2 = {|
a: {|
b: {|
c: 123,
|},
d: 456,
|},
e: 789,
|};
const t1 = [||];
const t2 = [|1,2,3|];
const t3 = [|1, [|2, 3, [|4|], 5|], 6|];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment