Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 294 Bytes

codefenceHighlight.md

File metadata and controls

18 lines (14 loc) · 294 Bytes

Relative imports

function greet(person: string, date: Date) {
  console.log(`Hello ${person}, today is ${date.toDateString()}!`)
}

greet("Maddison", new Date())

Hello

const a = 1
// ---cut---
const b = 2
const c = 3 // highlighted (0 based)