This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.0 | |
info: | |
title: My ToDo API | |
description: Create, read, edit, and complete tasks. | |
version: 0.1.0 | |
servers: | |
- url: http://localhost:8080 | |
description: Development server | |
variables: | |
port: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
What should go here? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function thisIsSomeCode(argument) { | |
const thought = "Will this be properly highlighted?"; | |
console.log(thought); | |
} | |
const yes_I_can_edit = true; |