
jesteś tutaj� 441
Reagowanie na żądania
Functions
A function is a chunk of code that
you can call from other places in your
program.
When calling a function, you can use
arguments to provide the function
with data.
Go functions can provide data back
to their callers using one or more
return values.
Types
Values in Go are classified into
different types, which specify what
the values can be used for.
Math operations and comparisons
between different types are not
allowed, but you can convert a value
to a new type if needed.
Go variables can only store values of
their declared type.
Conditionals
Conditionals are statements that
cause a block of code to be ...