Sie sind auf Seite 1von 10

Ring Documentation, Release 1.5.

GetChar() GetChar() # End of line

# the previous two lines can be replaced with the next line
# Give Option

if Option = 1
see "Enter your name : " give cName
see "Hello " + cName
else
bye
ok
End

21.3 Input() Function

We can get input from the keyboard using the Input() function
Syntax:
Input(nCount) ---> string

The function will wait until nCount characters (at least) are read
Example:
See "Enter message (30 characters) : " cMsg = input(30)
See "Message : " + cMsg

21.3. Input() Function 175


CHAPTER

TWENTYTWO

FUNCTIONS - FIRST STYLE

In this chapter we are going to learn about the next topics :-


• Define functions
• Call functions
• Declare parameters
• Send parameters
• Main Function
• Variables Scope
• Return Value
• Recursion

22.1 Define Functions

To define new function


Syntax:
func <function_name> [parameters]
Block of statements

Note: No keyword is required to end the function definition.

Example:
func hello
see "Hello from function" + nl

22.2 Call Functions

To call function without parameters, we type the function name then ()

Tip: We can call the function before the function definition and the function code.

Example:

176
Ring Documentation, Release 1.5.4

hello()

func hello
see "Hello from function" + nl

Example:
first() second()

func first see "message from the first function" + nl

func second see "message from the second function" + nl

22.3 Declare parameters

To declare the function parameters, after the function name type the list of parameters as a group of identifiers separated
by comma.
Example:
func sum x,y
see x+y+nl

22.4 Send Parameters

To send parameters to function, type the parameters inside () after the function name
Syntax:
funcname(parameters)

Example:
/* output
** 8
** 3000
*/

sum(3,5) sum(1000,2000)

func sum x,y see x+y+nl

22.5 Main Function

Using the Ring programming language, the Main Function is optional, when it’s defined, it will be executed after the
end of other statements.
if no other statements comes alone, the main function will be the first entry point
Example:

22.3. Declare parameters 177


Ring Documentation, Release 1.5.4

# this program will print the hello world message first then execute the main function

See "Hello World!" + nl

func main
see "Message from the main function" + nl

22.6 Variables Scope

The Ring programming language uses lexical scoping to determine the scope of a variable.
Variables defined inside functions (including function parameters) are local variables. Variables defined outside func-
tions (before any function) are global variables.
Inside any function we can access the variables defined inside this function beside the global variables.
Example:
# the program will print numbers from 10 to 1

x = 10 # x is a global variable.

func main

for t = 1 to 10 # t is a local variable


mycounter() # call function
next

func mycounter

see x + nl # print the global variable value


x-- # decrement

Note: Using the main function before the for loop declare the t variable as a local variable, It’s recommended to use
the main functions instead of typing the instructions directly to set the scope of the new variables to local.

22.7 Return Value

The function can return a value using the Return command.


Syntax:
Return [Expression]

Tip: the Expression after the return command is optional and we can use the return command to end the function
execution without returning any value.

Note: if the function doesn’t return explicit value, it will return NULL (empty string = “” ).

Example:

22.6. Variables Scope 178


Ring Documentation, Release 1.5.4

if novalue() = NULL
See "the function doesn't return a value" + nl
ok

func novalue

22.8 Recursion

The Ring programming language support Recursion and the function can call itself using different parameters.
Example:
see fact(5) # output = 120

func fact x if x = 0 return 1 else return x * fact(x-1) ok

22.8. Recursion 179


CHAPTER

TWENTYTHREE

FUNCTIONS - SECOND STYLE

In this chapter we are going to learn about the next topics :-


• Define functions
• Call functions
• Declare parameters
• Send parameters
• Main Function
• Variables Scope
• Return Value
• Recursion

23.1 Define Functions

To define new function


Syntax:
def <function_name> [parameters]
Block of statements
[end]

Note: the keyword ‘end’ is optional.

Example:
def hello
put "Hello from function" + nl
end

23.2 Call Functions

To call function without parameters, we type the function name then ()

Tip: We can call the function before the function definition and the function code.

Example:

180
Ring Documentation, Release 1.5.4

hello()

def hello
put "Hello from function" + nl
end

Example:
first() second()

def first put "message from the first function" + nl

def second put "message from the second function" + nl

23.3 Declare parameters

To declare the function parameters, after the function name type the list of parameters as a group of identifiers separated
by comma.
Example:
def sum x,y
put x+y+nl
end

23.4 Send Parameters

To send parameters to function, type the parameters inside () after the function name
Syntax:
funcname(parameters)

Example:
/* output
** 8
** 3000
*/

sum(3,5) sum(1000,2000)

def sum x,y put x+y+nl

23.5 Main Function

Using the Ring programming language, the Main Function is optional, when it’s defined, it will be executed after the
end of other statements.
if no other statements comes alone, the main function will be the first entry point
Example:

23.3. Declare parameters 181


Ring Documentation, Release 1.5.4

# this program will print the hello world message first then execute the main function

put "Hello World!" + nl

def main
put "Message from the main function" + nl
end

23.6 Variables Scope

The Ring programming language uses lexical scoping to determine the scope of a variable.
Variables defined inside functions (including function parameters) are local variables. Variables defined outside func-
tions (before any function) are global variables.
Inside any function we can access the variables defined inside this function beside the global variables.
Example:
# the program will print numbers from 10 to 1

x = 10 # x is a global variable.

def main
for t = 1 to 10 # t is a local variable
mycounter() # call function
end
end

def mycounter
put x + nl # print the global variable value
x-- # decrement
end

Note: Using the main function before the for loop declare the t variable as a local variable, It’s recommended to use
the main functions instead of typing the instructions directly to set the scope of the new variables to local.

23.7 Return Value

The function can return a value using the Return command.


Syntax:
Return [Expression]

Tip: the Expression after the return command is optional and we can use the return command to end the function
execution without returning any value.

Note: if the function doesn’t return explicit value, it will return NULL (empty string = “” ).

Example:

23.6. Variables Scope 182


Ring Documentation, Release 1.5.4

if novalue() = NULL
put "the function doesn't return a value" + nl
end

def novalue

23.8 Recursion

The Ring programming language support Recursion and the function can call itself using different parameters.
Example:
put fact(5) # output = 120

def fact x if x = 0 return 1 else return x * fact(x-1) end

23.8. Recursion 183


CHAPTER

TWENTYFOUR

FUNCTIONS - THIRD STYLE

In this chapter we are going to learn about the next topics :-


• Define functions
• Call functions
• Declare parameters
• Send parameters
• Main Function
• Variables Scope
• Return Value
• Recursion

24.1 Define Functions

To define new function


Syntax:
func <function_name> [parameters] ['{']
Block of statements
['}']

Example:
load "stdlib.ring"
func hello {
print("Hello from function \n")
}

24.2 Call Functions

To call function without parameters, we type the function name then ()

Tip: We can call the function before the function definition and the function code.

Example:

184

Das könnte Ihnen auch gefallen