### Initialize HyperFormula and Set Cell Formula Source: https://handsontable.com/docs/hyperformula This snippet shows how to initialize a new HyperFormula instance and set a cell's content to a formula. It demonstrates a basic calculation involving cell references. ```typescript const hf = HyperFormula.buildEmpty(); hf.setCellContents({ sheet: 0, row: 2, col: 1 }, '=B1*B2'); // Deterministic, exact result const result = hf.getCellValue(...); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.