0 10 20 30 40 50 60 70 80 90 100 56120 0
You are not logged in

Welcome to type with code

Start typing or press to get going!

The vb code you'll be racing to type out is all about:

Create and use a function with parameters

A function is like a procedure except that it always returns a value.

Parameters are variables that allow you to send data to the function to customise what it does or how it works. 

The parameters are the variables named in brackets after the function name.

This return value is calculated when the function is called and can be saved into a variable or used later in the program.

Both functions and procedures are sections of code that have been given a name, which can be re-used to do something useful.

This example defines a function which will generate and return a random number. It has two parameters which allow you to set the minimum and maximum number the random number will be between.  

This function is called to choose a random number between 10 and 20 and then called again to choose a random number between 50 and 100. Both numbers are returned and saved into separate variables.

0 WPM
0%
0s
0%