Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Body

test

{
  sketch F() {} // error
}

test

{
  mod m {} // error
}

test

{
  fn f() {} f(); // error
}

test

{
  init() {} // error
}

test

{
  use std;
}

test

{
  pub use std; // error
}

test

{
  return 1; // error
}

test

{
  if std::math::PI == 3 { }
}

test

{
  @input
}

test

{
  const B = 1; // error
}

test

{
  a = 1;
}

test

{
  prop a = 1; // error
}

test

{
  1 + 2;
}

test

{
  __builtin::geo2d::Circle(radius=1mm);
}