Inform 7 Glulxe ? [Question about line breaks + Gargoyle]

Hello my friends. I am using Glulxe to design my game a question i have is on about this game is there away to have a line break, i can’t seem to get it to do that?

p.s i have saw some nice gargoyle Ui pics but i don’t understand how to even get that program muchless do ui on it.

1 Like

In Inform 7:

say line break;

Or as part of a text:

say "Line one.[line break]Line two."
2 Likes

thank you

I’d recommend bookmarking the documentation. This version (courtesy of Zed Lopez), in comparison to the one in the IDE, has the option to be viewed as one full webpage, meaning you can search through it using your browser’s search functionality.

For example, the first instance of line break gives you a (convoluted) way to make line breaks[1], while the fourth instance leads you to §5.8 Line breaks and paragraph breaks which includes the [line break] syntax Daniel provided.


  1. Texts which end with sentence-ending punctuation - full stop, question mark, exclamation mark - are printed with a line break after them. ↩︎

7 Likes