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
| brew tap homebrew/cask-fonts | |
| brew install --cask font-cascadia-code | |
| brew install --cask font-cascadia-code-pl | |
| brew install --cask font-cascadia-mono | |
| brew install --cask font-cascadia-mono-pl |
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
| using System; | |
| // Run mode: | |
| // value.Inspect() — often better than Console.WriteLine | |
| // Inspect.Heap(object) — structure of an object in memory (heap) | |
| // Inspect.Stack(value) — structure of a stack value | |
| public class Program { | |
| public Point point; | |
| public static void Main() { | |
| int value = 1200000; |