Skip to content

Instantly share code, notes, and snippets.

@ulope
Created September 6, 2021 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ulope/b319e6ce122dcaaa3284828448fbea2f to your computer and use it in GitHub Desktop.
Save ulope/b319e6ce122dcaaa3284828448fbea2f to your computer and use it in GitHub Desktop.
Export Wahl-O-Mat
(function() {
let result = [
'These;Auswahl;Gewichtet'
];
for (let i = 0; i < WOMT_nThesen; i++) {
result.push([WOM.getThesis(i, false), S_aThesen[i], S_aThemen[i]].join(';'))
};
return result.join('\n');
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment