gulp.src('src/**/*.js);
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
byte[] emojiBytes = new byte[]{(byte)0xF0, (byte)0x9F, (byte)0x98, (byte)0x81}; | |
String emojiAsString = new String(emojiBytes, Charset.forName("UTF-8")); |
💻 💻 💻 💻 💻 💻 💻 💻 💻 💻 💻 SublimeREPL for SML 💻 💻 💻 💻 💻 💻 💻 💻 💻 💻 💻
This tutorial assumes you already have Sublime text editor with Package Control installed as well as smlnj installed. Complete the installations with the links provided before continuing if you haven't already done so. 👌
- Open Sublime and go to Preferences > Browse packages
- Browse to the folder User inside the packages folder
- Create a folder called SML
- Inside the newly created SML folder, create two files 📄
- Default.sublime-commands
/* Create a JAR file from files */
jar cf jar-file.jar input-file(s)
Options ☕
- c: indicates you want to create a JAR file
- f: indicates you want to direct output to a file rather than stdout
# Tarball and compress entire directory
📁 tar -zcvf archive-name.tar.gz directory-name
# Tarball and compress files individually