Skip to content

Instantly share code, notes, and snippets.

@tagaroggu
tagaroggu / Analytic English.md
Last active October 14, 2022 23:22
An attempt at using English in a more analytic way

Analytic English

(This is just an experiment, an idea. Please take with a grain of salt and enjoy).

  • Word order:

    • Same as usual.
    • Word order indicates sentence structure, therefore negating the need for a copula.
  • Verbs:

    • Verbs do not inflect for subject nor tense. Typically, if not always, a verb will be in its infinitive form, without the to.
  • Irregular verbs also take on the infinitive form, including to be.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<script>
var code = `
var string="banana";
var blob = new Blob([string], {type: 'text/plain'});
postMessage(URL.createObjectURL(blob));
`;
var worker = new Worker(URL.createObjectURL((new Blob([code], {type: 'application/javascript'}))));
worker.onmessage = _ => {
fetch(_.data).then(a=>a.text()).then(txt=>document.body.innerText = txt);
};