Skip to content

Commit

Permalink
Updated definition list formatting...
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongough committed Sep 1, 2010
1 parent ba79c05 commit 162a076
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ Koi currently only implements a minimal set of flow control operators:

[print( string )] Writes a string to STDOUT.
[gets()] Fetches a newline delimited string from STDIN.
[call( identifier [, parameter])] Calls the function that is stored in 'identifier'.
[tailcall( identifier[, parameter])] Performs a 'tailcall' to the function stored in 'identifier'. This type of call is used when recursing heavily to improve performance and to facilitate the use of functions as iterators.
[return( [value] )] Return a value from a function.
[to_string( value/identifier )] Converts the given value to a representative string.
[call( identifier [, parameter] )] Calls the function that is stored in 'identifier'.
[tailcall( identifier[, parameter] )] Performs a 'tailcall' to the function stored in 'identifier'. This type of call is used when recursing heavily to improve performance and to facilitate the use of functions as iterators.
[return([ value ])] Return a value from a function.
[to_string( value )] Converts the given value to a representative string.
[type_of( value )] Returns a string representing the type of the value given, eg: "integer".

=== Reserved words
Expand Down

0 comments on commit 162a076

Please sign in to comment.