├── README.md ├── hello.js ├── main.js └── yolo.js /README.md: -------------------------------------------------------------------------------- 1 | # p-dev -------------------------------------------------------------------------------- /hello.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World") 2 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | // hey this is a comment 2 | console.log("Hello World") 3 | console.log("Hello World") // 2nd time! 4 | 5 | function main() { 6 | return null; 7 | } 8 | main() 9 | 10 | // console.log(main) -------------------------------------------------------------------------------- /yolo.js: -------------------------------------------------------------------------------- 1 | console.log("For the YOLO Badge") 2 | --------------------------------------------------------------------------------