This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<h2>Meine To-do-Liste</h2> | |
<input type="text" id="aufgabe" placeholder="Neue Aufgabe"> | |
<button onclick="neueAufgabe()">Hinzufügen</button> | |
<ul id="todoListe"></ul> | |
<script> | |
function neueAufgabe() { | |
var li = document.createElement("li"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def addiere(a, b): | |
return a + b | |
def subtrahiere(a, b): | |
return a - b | |
def multipliziere(a, b): | |
return a * b | |
def dividiere(a, b): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def addiere(x, y): | |
return x + y | |
ergebnis = addiere(3, 4) | |
print(ergebnis) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (let i = 0; i < 5; i++) { | |
console.log(i); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git commit -m "Dies ist eine Commit-Nachricht" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git show <tag-name> # Zeigt Informationen über den spezifischen Tag an. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git tag # Zeigt eine Liste der vorhandenen Tags an. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git tag v1.0.0 # Erstellt einen Tag mit dem Namen "v1.0.0" am aktuellen HEAD-Commit. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git tag <tag-name> [<commit-id>] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git push <remote-name> <branch-name> |
NewerOlder