- FireFox
- Open new tab -> about:config
- Search and modify
javascript.options.wasm
tofalse
- Chrome/Chromium
- Add startup argument:
chrome.exe --js-flags=--noexpose_wasm
- If you're under macOS, do like this:
open /Applications/Google\ Chrome.app --args --js-flags=--noexpose_wasm
- Add startup argument:
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
#include <stdio.h> | |
// Declare an array to emulate a stack | |
// Opacity of this stack is 10000 | |
// `stack_index` is the cursor indicate current position | |
int stack[10000] = {0}, stack_index = 0; | |
// Functions define | |
void push(int x); |
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
#include <stdio.h> | |
int main() { | |
int matrix_A[3][3] = {0}, sum = 0; | |
for (int i = 0; i < 3; ++ i) | |
for (int j = 0; j < 3; ++ j) | |
scanf("%d", &matrix_A[i][j]); | |
for (int j = 0; j < 3; ++j) |
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
#include <bits/stdc++.h> | |
using namespace std; | |
int cursor = 0, size, cmd_cursor = 0, loopIndex = 0; | |
string version = "v0.1.1"; | |
void exe(string cmd), start(); | |
void start(){ | |
printf("You got into Brain Fuck compiler.\n"); | |
printf("This software helps you to run Brain Fuck codes.\n"); | |
printf("Now version : %s\n", version.c_str()); | |
printf("Chars & its meanings : \n"); |