Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 410 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 410 Bytes

DevDay 2023 - [Workshop Talk Title]

This repo contains content that supports the workshop.

Use H1s for different sections

Use H2s for sub-sections within H1s

  • Bullet 1
  • Bullet 2
  • Bullet 3

Examples

// Define a function to print "Hello, World!"
function printHelloWorld(): void {
  console.log("Hello, World!");
}

// Call the function to print the message
printHelloWorld();