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
{ | |
"hompage": "https://www.randoom.org/Software/SetlX", | |
"version": "2.7.0", | |
"license": "BSD", | |
"url": [ | |
"http://download.randoom.org/setlX/pc/setlX_v2-7-0.binary_only.zip", | |
"https://gist.githubusercontent.com/KeKsBoTer/2f0e139ac7d653b652b9935763fdbf8b/raw/afa6bf10d05077ea5cd029d9f22970b928cea2a1/setlX.ps1" | |
], | |
"hash":[ | |
"876c8aad46fc8c08e71d55fc0e6b9a46d753f16ea9655d1beae76d170b1f2de3", |
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
# | |
# | |
# launcher script for the setlX interpreter on Microsoft Windows | |
# | |
# | |
# insert path to the folder where you copied the jar files here | |
$setlXJarDirectory = "." | |
# insert full path to library location here |
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
void S(){ | |
SCANNER(x); | |
if(x!=id) | |
error(); | |
SCANNER(x); | |
P(); | |
} | |
void P(){ | |
SCANNER(x); |
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
package main | |
import ( | |
"flag" | |
"fmt" | |
"math/big" | |
"strconv" | |
"github.com/ALTree/bigfloat" | |
) |