Skip to content

Commit aaf06db

Browse files
authored
Add template for JS
1 parent ac8bf56 commit aaf06db

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

template.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
'use strict'
2+
3+
const io = require('./lib/io')(main)
4+
const readline = io.readline
5+
const print = io.print
6+
7+
const getLine = () => readline().split(' ')
8+
const getInts = () => getLine().map(n => parseInt(n))
9+
const getInt = () => readInts()[0]
10+
11+
// main()
12+
const main = () => {
13+
}

0 commit comments

Comments
 (0)