Ga naar hoofdinhoud

InlineEditor-demo

Python, één bestand

for i in range(5):
    print("Tel:", i)

Python, meerdere bestanden

import helpers

print(helpers.begroet("Coderius"))

Python, foutmelding

print("Dit gaat goed")
print(onbekende_variabele)

Website met live voorbeeld

<!DOCTYPE html>
<html lang="nl">
<head>
  <meta charset="UTF-8">
  <title>Demo</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <h1 id="titel">Hallo web</h1>
  <script src="script.js"></script>
</body>
</html>