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
| --[[ | |
| ===================================================================== | |
| ==================== READ THIS BEFORE CONTINUING ==================== | |
| ===================================================================== | |
| ======== .-----. ======== | |
| ======== .----------------------. | === | ======== | |
| ======== |.-""""""""""""""""""-.| |-----| ======== | |
| ======== || || | === | ======== | |
| ======== || KICKSTART.NVIM || |-----| ======== |
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
| # Integer vs Float div by zero gotchas | |
| # | |
| # | |
| 1 / 0 = [answer] | |
| 1.0 / 0 = [answer] | |
| # String concatenation vs interpolation | |
| x = 5 | |
| "Num = #{x}" # Whats the output and why? | |
| "Num = " + x # whats the output and why? |