A short guide for installing Scala packages from GitHub's Apache Maven package registry.
This file contains 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
# RISC-V Assembly example program | |
# RISC-V Assembly program adds 7.0 to a value if it's less than 7.0, otherwise it divides the value by 7.0 | |
# Created: 2023-12-06 | |
.data | |
# value1 = 35.0 | |
value1: .float 35.0 | |
seven: .float 7.0 | |
# result = 0.0 | |
result: .float 0.0 |
This is a simple guide to set up TypeScript in WebStorm. You don't need to have Node.js installed on your system if your IDE has an interpreter. NVM is also recommended if you'd like to stay up to date with all versions (if you'd like to manage all your versions).
- Open your WebStorm IDE and create a new project, you can create either an empty project (and configure it later) or a preconfigured Node.js project.
- Press Create.
- Open the settings
IntelliJ IDEA > Preferences
for MacOS (⌘ + ,
) orFile > Settings
for Windows or Linux. - Go to
Languages & Frameworks < Node.js and NPM
.