Sha256: a0ef362f9ebf60fb3627b5f2ae80102b9d68f3a018af0b49d67d7bca24fc55f5
Contents?: true
Size: 457 Bytes
Versions: 14
Compression:
Stored size: 457 Bytes
Contents
@import "archetype"; $test: ( (one, ( '1', '2', '3' )), (two, ( '4', '5', '6' )) ); .test { a: nth(associative($test, one), 1); // 1 b: nth(associative($test, one), 2); // 2 c: nth(associative($test, two), 2); // 5 d: nth(associative($test, two), 3); // 6 e: nth(associative($test, 'two'), 2); // 5 f: nth(associative($test, 'two'), 3); // 6 g: nth(associative($test, three), 1); // 1 }
Version data entries
14 entries across 14 versions & 1 rubygems