# code-block-pro/1.27.7/build/shiki/samples/dream-maker.sample

Code Block Pro – Beautiful Syntax Highlighting, version 1.27.7. 25 lines.

- Page: https://pluginprobe.com/plugins/code-block-pro/1.27.7/code/build/shiki/samples/dream-maker.sample
- Raw: https://pluginprobe.com/plugins/code-block-pro/1.27.7/raw/build/shiki/samples/dream-maker.sample
- Modified: 2023-09-03T01:04:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-block-pro/1.27.7/code/build/shiki/samples/dream-maker.sample#L10-L20`.

```
/mob/Login()
    var/count = 0

    world << "Let's count until infinity!"

    // Infinite loop
    while (TRUE)
        count += 1

        if (count == 3)
            world << "three"

            // Skip the rest of this iteration
            continue

        world << "#[count]"

        if (count == 5)
            world << "OK, that's enough"

            // Exit this loop
            break

// From https://spacestation13.github.io/DMByExample/flow/loops.html

```
