Skip to content
Open

Temp #24

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions dtunes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ Currently, two official plugins are available:

- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh


4 changes: 4 additions & 0 deletions dtunes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
</head>
<body>
<div id="root">Hello guys</div>
<p>
Welcome to DTunes!
</p>

<script type="module" src="/src/main.jsx"></script>
</body>
</html>
9 changes: 9 additions & 0 deletions dtunes/random.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package main
import (
"fmt",
"math"
)

func main() {
fmt.Println("The square of Pi is ", math.Pow(math.Pi,2))
}