hello-world
This commit is contained in:
parent
0ac8cea673
commit
eaf8456c6b
9
src/01-einfuehrung/hello-world/deno.json
Normal file
9
src/01-einfuehrung/hello-world/deno.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"tasks": {
|
||||
"dev": "deno run --watch hello.ts"
|
||||
},
|
||||
"imports": {
|
||||
"@std/assert": "jsr:@std/assert@1"
|
||||
}
|
||||
}
|
||||
|
||||
2
src/01-einfuehrung/hello-world/hello.ts
Normal file
2
src/01-einfuehrung/hello-world/hello.ts
Normal file
@ -0,0 +1,2 @@
|
||||
const message: string = 'Hello, World!';
|
||||
console.log(message);
|
||||
9
src/01-einfuehrung/test.http
Normal file
9
src/01-einfuehrung/test.http
Normal file
@ -0,0 +1,9 @@
|
||||
### Get nasa.com
|
||||
GET https://nasa.com
|
||||
|
||||
### Get nasa.com
|
||||
POST https://nasa.com
|
||||
|
||||
{
|
||||
"id": 1
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user