From e695d5d3b74b85fd28b2da7f70cf75f8295a8067 Mon Sep 17 00:00:00 2001 From: David Lenfesty Date: Thu, 28 Jan 2021 18:20:10 -0700 Subject: [PATCH] firs commit, hello world! --- PS1/.vscode/launch.json | 15 +++++++++++++++ PS1/q1.m | 4 ++++ 2 files changed, 19 insertions(+) create mode 100644 PS1/.vscode/launch.json create mode 100644 PS1/q1.m diff --git a/PS1/.vscode/launch.json b/PS1/.vscode/launch.json new file mode 100644 index 0000000..e7f558c --- /dev/null +++ b/PS1/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "pwa-chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/PS1/q1.m b/PS1/q1.m new file mode 100644 index 0000000..11a92a0 --- /dev/null +++ b/PS1/q1.m @@ -0,0 +1,4 @@ + +% Hello we are writing MATLAB + +display("foo"); \ No newline at end of file