Skip to content

Instantly share code, notes, and snippets.

View tothandras's full-sized avatar

András Tóth tothandras

View GitHub Profile
@tothandras
tothandras / export-syntax.js
Created November 2, 2015 09:05 — forked from caridy/export-syntax.js
ES6 Module Syntax Table
// default exports
export default 42;
export default {};
export default [];
export default foo;
export default function () {}
export default class {}
export default function foo () {}
export default class foo {}
/*
* fordit.c
* Egész számokat olvas be egy listába, majd fordított
* sorrendben kiírja azokat.
*
*/
#include <iostream>
using namespace std;