bibliotheks-und-archivinfor.../kapitel-3.md

25 lines
440 B
Markdown

# Kapitel 3: Übertragungsprotokolle und Datentransformationen \(02.11.2017\)
{% exercise %}
Define a variable `x` equal to 10.
{% initial %}
var x =
{% solution %}
var x = 10;
{% validation %}
assert(x == 10);
{% context %}
// This is context code available everywhere
// The user will be able to evaluate `exposedVar`
var exposedVar = 3;
// ... or call `exposedFunction`
function exposedFunction {
return 3;
}
{% endexercise %}