Created
May 22, 2019 17:58
-
-
Save jtenner/5c99729e0ba7ebc47fbfa30bc9a2017f to your computer and use it in GitHub Desktop.
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
class Bar {} | |
describe("Foo", (): void => { | |
log<string>("Some string value"); | |
log<i32>(42); // all number types are supported | |
log<Bar>(new Bar()); // displays the raw bytes in the console | |
log<Bar>(null); // null reference | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment