Skip to content

Instantly share code, notes, and snippets.

View TheMarini's full-sized avatar
🍰
The cake is a lie

Bruno Marini TheMarini

🍰
The cake is a lie
View GitHub Profile
@TheMarini
TheMarini / wait.js
Created July 2, 2018 21:33 — forked from ericelliott/wait.js
Wait -- an ES6 promise example
const wait = time => new Promise((resolve) => setTimeout(resolve, time));
wait(3000).then(() => console.log('Hello!')); // 'Hello!'
#include <locale.h> //language library
#include <stdio.h> //standard input
#include <stdlib.h> //standard library
#include <string.h> //string library
// PRELOAD FUNCTIONS
void header(); // infos
void menu();
void opcoes();
void listar();