diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..5965208 Binary files /dev/null and b/.DS_Store differ diff --git a/dtunes/README.md b/dtunes/README.md index f768e33..33dbd83 100644 --- a/dtunes/README.md +++ b/dtunes/README.md @@ -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 + + diff --git a/dtunes/index.html b/dtunes/index.html index f4e7808..712b53a 100644 --- a/dtunes/index.html +++ b/dtunes/index.html @@ -8,6 +8,10 @@
Hello guys
+

+ Welcome to DTunes! +

+ diff --git a/dtunes/random.go b/dtunes/random.go new file mode 100644 index 0000000..87f59f0 --- /dev/null +++ b/dtunes/random.go @@ -0,0 +1,9 @@ +package main +import ( + "fmt", + "math" +) + +func main() { + fmt.Println("The square of Pi is ", math.Pow(math.Pi,2)) +}