The Fabl Manual
Function Index
Class Index
Globals Index
Libraries
Contents

Title Page
Introduction
Sample Code
Architecture
Syntax
Strong Typing
Polymorphism
Operators
Help
Errors
Configuration
RDF
Namespaces
Owl
Datatypes
Resources
Dot ops
Coercion
Type Casting
nil

Types
string
id
int
double
boolean
Literal
Containers
Functions
void

Home
Regarding
The Path
Classes
Delegation
Functional Values
Read/Write
Load/Store
Libraries
Imports
CGI
Help

The operator

void function help(<anyType> v)

prints out the known type information about v. Here are examples:

var abc = 34;

int function twice(int x){return x+x}
string function twice(string x){return x+x}

help(abc);
-->[abc of type int]

help(twice);
--> twice(int) => int
--> twice(string) => string