Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Functions: Optional Named Parameter with default value

String prompt(String text, {int count : 1}) {
  for (int i = 0; i < count; i++) {
    print(text);
  }
}

void main() {
    prompt("Your name:", count:3);
    prompt("Your Cat:");
}