mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
8 lines
144 B
JavaScript
Executable File
8 lines
144 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const assert = require('assert');
|
|
|
|
const notmain = require('./notmain.js')
|
|
assert(notmain.x === 1)
|
|
assert(notmain.y === 2)
|