First Commit

This commit is contained in:
2025-11-02 22:52:08 +01:00
commit 73fbbf1be2
5821 changed files with 977526 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
// This file will highlight the passed code using the custom theme when run via: "node highlight-string"
'use strict'
var cardinal = require('..')
var code = '' +
function add(a, b) {
var sum = a + b
return sum
} +
''
console.log(cardinal.highlight(code))