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
const wait = time => new Promise((resolve) => setTimeout(resolve, time)); | |
wait(3000).then(() => console.log('Hello!')); // 'Hello!' |
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 <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(); |