$ curl -L http://git.io/v0913 | bash /dev/stdin
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
let yield = 3.14; | |
// ^^^^^ | |
// Hey! yield is not reserved keyword? | |
let await = yield; | |
// ^^^^^ ^^^^^ | |
// Okay, even await isn't reserved keyword too? | |
// Let's do something crazy... |
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
/* -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. | |
* File Name : es5_tokenizer.js | |
* Created at : 2019-03-04 | |
* Updated at : 2019-03-04 | |
* Author : jeefo | |
* Purpose : | |
* Description : | |
* Reference : | |
.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.*/ | |
// ignore:start |
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
/* -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. | |
* File Name : index.js | |
* Created at : 2018-05-27 | |
* Updated at : 2018-05-27 | |
* Author : jeefo | |
* Purpose : | |
* Description : | |
_._._._._._._._._._._._._._._._._._._._._.*/ | |
// ignore:start | |
"use strict"; |
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
SHELL = /bin/bash | |
TARGET = a.exe | |
SOURCES = $(shell find src -name "*.cpp") | |
HEADERS = include # current project's headers directory | |
OBJECTS = $(patsubst %.cpp, .objects/%.o, $(SOURCES)) | |
CC = g++ | |
FLAGS = |