Replies: 2 comments 4 replies
-
Works for me. Are you using the most recent tintin version? |
Beta Was this translation helpful? Give feedback.
3 replies
-
Pretty annoying, hopefully the long double issues get straightened out eventually. I assume you added
to get it working. I switched to the old code for the next release, so there should be no issues when upgrading. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to extract a portion of a list using the ellipsis and it seems to not be working. Perhaps I'm misunderstanding how it works.
#list temp create;
#list temp add {test0};
#list temp add {test1};
#list temp add {test2};
#list temp add {test3};
#list temp add {test4};
#list temp add {test5};
#list temp add {test6};
#list temp add {test7};
#list temp add {test8};
#list temp add {test9};
#show $temp[2..3] -> {test1}{test2}{test3}{test4}{test5}{test6}{test7}{test8}{test9}
#show $temp[3..] -> {test2}{test3}{test4}{test5}{test6}{test7}{test8}{test9}
#show $temp[-5..] -> {test5}{test6}{test7}{test8}{test9}
#show $temp[-5..-2] -> {test5}{test6}{test7}{test8}{test9}
I was expecting, for example, that $temp[-5..-2] would return {test5}{test6}{test7}{test8}
Beta Was this translation helpful? Give feedback.
All reactions