We have an exciting announcement about badges coming in May 2025. Until then, we will temporarily stop issuing new badges for course completions and certifications. However, all completions will be recorded and fulfilled after May 2025.
General

General

I’d like to migrate commands from my journal file into a macro. For example: (ti-menu-load-string “dis set colors background “black” “) The TUI command needs “black” in quotes. This breaks the scheme macro. Is there a different syntax I should use?

    • FAQFAQ
      Participant

      You can use a back slash to be able to input double quotes as shown below: (ti-menu-load-string (string-append “dis set colors foreground ” “”” “”black”” “”””””)) The string append command allows us to combine the strings. “” allows us to transfer double quotes as a string. “