Skip to content

Commit

Permalink
very basics of getting started
Browse files Browse the repository at this point in the history
  • Loading branch information
duncantl committed Jun 19, 2017
1 parent d967464 commit e500a11
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions inst/doc/basics
@@ -0,0 +1,18 @@
* Loading the library, by default, calls the InitializeNativeTarget.
You can avoid this by setting the R option Rllvm.autoInitialize to FALSE.

* To start creating code, you create a module (Module).

* Then call Function() to declare a function.
You specify the return type and the types of the parameters.

* Create one or more Block() objects.
These are used to house the instructions that are related to each
other. The different blocks allow us to jump between them and avoid
other instructions.






0 comments on commit e500a11

Please sign in to comment.