Menu

SyntaxProject

Brad Lanam

Wiki Home
Syntax

Syntax: project

The project statement sets the project name and defines attributes for the project.

project <project-name>;

project <project-name> {
  compiler <default-compiler>;
  version <version-string>;
}

The default compiler is defined with the compiler attribute.

Examples
project mkctest;

project mkctest {
  compiler c;
}

project mkctest {
  compiler c  ;
  version '0.3';
}
Attributes

Wiki Home
Syntax


Related

Wiki: Home
Wiki: Syntax
Wiki: SyntaxAttrCompiler
Wiki: SyntaxAttrVersion