We are currently working on new rules for what content should and shouldn't be allowed on this website, and are looking for feedback! See Esolang:2026 topicality proposal to view and give feedback on the current draft.

LoopDeLoop

From Esolang
Jump to navigation Jump to search

LoopDeLoop

Overview

LoopDeLoop is an esoteric programming language centered around looping constructs. Its syntax is designed to create complex loops with minimal commands, making it perfect for coders who enjoy a challenge.

Basic Commands

  • `!start` - Begin the program
  • `!echo` - Print command
  • `!spin` - Start a loop
  • `!twirl` - End a loop
  • `!end` - End the program

Example Programs

Hello World

!start
!echo "Hello, World!"
!end
 

Simple Loop

!start
!spin 3
  !echo "Looping!"
!twirl
!end
 

Nested Loop

!start
!spin 2
  !echo "Outer Loop"
  !spin 3
    !echo "Inner Loop"
  !twirl
!twirl
!end
 

LoopDeLoop challenges you to master the art of loops and create intricate patterns with code. CodePhantom (talk)