louiscad
11/17/2023, 11:03 AMexpr { env.GITHUB_ACTIONS } shouldBe "$dollar{{ GITHUB_ACTIONS }}"
expr { env.GITHUB_ACTIONS } shouldBe "\${{ GITHUB_ACTIONS }}"
LeoColman
11/17/2023, 11:08 AMabc shouldBe ("$" + "{{ GITHUB_ACTIONS }}")
louiscad
11/17/2023, 11:09 AMLeoColman
11/17/2023, 11:10 AM+
is easier on my eyes to understand what exactly I'm trying to testlouiscad
11/17/2023, 11:12 AMLeoColman
11/17/2023, 11:17 AM"www" + website + Constants.SLASH + "path" + variable + ...
louiscad
11/17/2023, 11:24 AMLeoColman
11/17/2023, 11:36 AM\${{}}
-- Like having to force my brain to think what it means instead of just 'knowing'abc should be """${{ GITHUB_ACTIONS }}"""
"
, but remove the """"ambiguity"""" of escaping the $
louiscad
11/17/2023, 1:07 PM\
means "we're not putting a Kotlin variable or expression in there, it's just a $
character."LeoColman
11/17/2023, 1:14 PM"""
, right?louiscad
11/17/2023, 1:24 PM"""${{ lol }}"""
doesn't compilelol
is defined of courseLeoColman
11/17/2023, 1:25 PM${
is actually a template due to ${foo.bar}
$(
, which would probably compile finelouiscad
11/17/2023, 1:25 PM