This commit is contained in:
nelle 2023-10-28 13:38:04 -06:00
parent 4a85861f0b
commit bd9c7d08d4

View file

@ -16,7 +16,7 @@ class StartView (
val msg = "Welcome to $GAME_ID." val msg = "Welcome to $GAME_ID."
// a text box can hold headers, paragraphs and list items // a text box can hold headers, paragraphs and list items
// `contentWidth = ` here is a so called keyword parameter // `contentWidth = ` here is a so-called keyword parameter
// using them you can pass parameters not by their order // using them you can pass parameters not by their order
// but by their name. // but by their name.
// this might be familiar for Python programmers // this might be familiar for Python programmers