Here are the steps to install Zig Compiler in Termux Android...
Install Termux from F-Droid, because the Google Play version is outdated...
Launch Termux on Android and enter...
| #version 300 es | |
| #ifdef GL_FRAGMENT_PRECISION_HIGH | |
| precision highp float; | |
| #else | |
| precision mediump float; | |
| #endif | |
| out vec4 fragColor; | |
| uniform vec2 resolution; | |
| uniform vec3 orientation; |
| import { parse } from "https://deno.land/x/css@0.3.0/mod.ts"; | |
| var file = Deno.args[0]; | |
| var input = await Deno.readTextFile(file); | |
| var parsed = parse(input, { value: true }); | |
| var root = { | |
| rules: [], |
Here are the steps to install Zig Compiler in Termux Android...
Install Termux from F-Droid, because the Google Play version is outdated...
Launch Termux on Android and enter...
| TypeScript 14 hrs 30 mins βββββββββββββββββββββ 46.2% | |
| HTML 10 hrs 1 min βββββββββββββββββββββ 31.9% | |
| JavaScript 4 hrs 52 mins βββββββββββββββββββββ 15.5% | |
| SCSS 1 hr 39 mins βββββββββββββββββββββ 5.3% | |
| Bash 9 mins βββββββββββββββββββββ 0.5% |
| #pragma once | |
| #include <stdint.h> | |
| // pcg32_next() implementation matches pcg_engines::oneseq_xsh_rr_64_32 | |
| // NOTE: use this only for compatibility with 32-bit architectures | |
| // otherwise prefer using pcg64.h implementation with 128-bit state | |
| typedef struct { |
| /*! | |
| * \file pango_layout_word_wrap.c | |
| * \brief pango layout word wrap | |
| * | |
| * \author Ben Pfaff http://benpfaff.org | |
| * | |
| * In working with Pango I found an oddity that I do not understand. | |
| * It may be a bug, or it might just be my misunderstanding. | |
| * | |
| * As part of a table layout procedure for printing, my code wishes to find out |