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

Workbench

test

sketch K() {
  sketch F() {} F(); // error
} K();

test

sketch K() {
  mod m {} // error
} K();

test

sketch K() {
  fn f() {} f();
} K();

test

sketch K() {
  init() {}
} K();

test

sketch K() {
  use std;
} K();

test

sketch K() {
  pub use std; // error
} K();

test

sketch K() {
  return 1; // error
} K();

test

sketch K() {
  if std::math::PI == 3 { }
} K();

test

sketch K() {
  @input
} K();

test

sketch K() {
  const B = 1;
} K();

test

sketch K() {
  a = 1;
} K();

test

sketch K() {
  prop a = 1;
} K();

test

sketch K() {
  1 + 2;
} K();

test

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