🏴‍☠️ OnePiece Lang Playground

📖 Keywords Map

{
  "temporaryBounty": "let",
  "eternalPose": "const",
  "hasHaki": "if",
  "noHaki": "else",
  "DockAtHarbor": "}",
  "sailThrough": "for",
  "untilLaughTale": "while",
  "crewSkill": "function",
  "claimTreasure": "return",
  "echoDenDen": "console.log",
  "hakiAwakened": "true",
  "devilFruitWeak": "false",
  "lostAtSea": "null",
  "abandonShip": "break",
  "keepSailing": "continue"
}

📝 Example Input

temporaryBounty islands = 2

untilLaughTale(islands >= 0)
  hasHaki(islands % 2 == 0)
    echoDenDen("I NEED MEAT!")
  DockAtHarbor
  noHaki
    echoDenDen("I'm Luffy, and I'm gonna become the king of pirates!")
  DockAtHarbor
  islands -= 1
DockAtHarbor

📝 Onepiece Lang Input

✅ Compiled JS

// Your compiled JS will appear here.

📣 Console Output

// Console output will appear here.