Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
/* | |
* This is free and unencumbered software released into the public domain. | |
* | |
* For more information, please refer to <https://unlicense.org> | |
*/ | |
//Regular text | |
#define BLK "\e[0;30m" | |
#define RED "\e[0;31m" | |
#define GRN "\e[0;32m" |
#!/usr/bin/env python3 | |
RADIX = 10 | |
# radix sort that works for non negative integers | |
def radix_sort_nonneg(lst): | |
last_iteration = False | |
radix_power = 1 | |
while not last_iteration: |
// All depends can be found here: http://apps.aboutscript.com/jhk/JHK.zip | |
// Video: http://youtu.be/EX0iT0NTTjw | |
import com.eaio.nativecall.*; | |
public class AutoHotkeyTest { | |
private static IntCall exec; | |
public static void main(String[] args) { | |
System.out.println("Hello World"); |