Delim | Ascii | Dec | Hex | Desc |
---|---|---|---|---|
@RM | ÿ | 255 | FF | Row mark. Separates rows. |
@FM | þ | 254 | FE | Field mark. Separates columns within a row. |
@VM | ý | 253 | FD | Value mark. Separates values within a column. |
@SVM | ü | 252 | FC | Sub-value mark. Separates sub-values within a multi-valued column. |
@TM | û | 251 | FB | Text mark. Separates lines in a text column. |
@STM | ú | 250 | FA | Subtext mark. Separates sub-lines of text. |
View codec
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
#!/usr/bin/env python3 | |
import os | |
import subprocess | |
import sys | |
if len(sys.argv) < 2: | |
print("Incorrect number of arguments.") | |
sys.exit(1) |
View Multivalue Delimiters.md
View undef
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
#!/usr/bin/env python3 | |
import sys | |
f = open(sys.argv[1], "r") | |
lines = f.readlines() | |
symbolTable = { } |
View mvbasic.json
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
{ | |
"ABORT": { | |
"prefix": "ABORT", | |
"body": ["ABORT $1"], | |
"description": "Use the ABORT statement to terminate execution of a BASIC program and return to the UniVerse prompt." | |
}, | |
"ABS": { | |
"prefix": "ABS", | |
"body": ["ABS($1)"], | |
"description": "Use the ABS function to return the absolute value of any numeric expression." |
View unibasic.snippets
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
snippet ABORT "Use the ABORT statement to terminate execution of a BASIC program and return to the UniVerse prompt." b | |
ABORT [expression …] | |
endsnippet | |
snippet ABS "Use the ABS function to return the absolute value of any numeric expression." b | |
ABS(expression) | |
endsnippet | |
snippet ABSS "Use the ABSS function to return the absolute values of all the elements in a dynamic array." b | |
ABSS(dynamic.array) | |
endsnippet | |
snippet ACOS "Use the ACOS function to return the trigonometric arc-cosine of expression." b |