This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE item (amount NUMERIC(18, 7) NOT NULL); | |
| INSERT INTO item VALUES (12345678901.1234567); | |
| SELECT * FROM item; -- 12345678901.1235 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <span style="font-family: Monaco, Consolas, 'Courier New', Courier, monospace; font-weight: bold; font-size: xx-large;">F# |> I <span style="color: red;">❤</span></span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| static void Main(string[] args) | |
| { | |
| try | |
| { | |
| var x = 1 / args.Length; | |
| } | |
| catch (Exception ex) | |
| { | |
| Console.WriteLine(Newtonsoft.Json.JsonConvert.SerializeObject(ex)); | |
| Console.WriteLine(); |