If you convert a string consisting of a single minus sign to a BigInt you get zero. ``` import bigints let x = "-".initBigInt echo x ``` This program prints ``` 0 ```