{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "other-entry",
   "metadata": {
    "jupyter": {
     "source_hidden": true
    }
   },
   "source": [
    "# Example Julia notebook\n",
    "\n",
    "More info here: https://github.com/JuliaLang/IJulia.jl\n",
    "\n",
    "Before you run this Notebook, you need to install IJulia locally:\n",
    "\n",
    "```\n",
    "julia -e 'using Pkg; Pkg.add(\"IJulia\")'\n",
    "```"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "nervous-field",
   "metadata": {},
   "outputs": [],
   "source": [
    "using Pkg"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "literary-feature",
   "metadata": {},
   "outputs": [],
   "source": [
    "Pkg.add(\"PyPlot\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "polar-fifth",
   "metadata": {},
   "outputs": [],
   "source": [
    "import PyPlot"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "residential-procurement",
   "metadata": {},
   "outputs": [],
   "source": [
    "x = range(0, stop=2pi, length=200)\n",
    "y = sin.(x)\n",
    "PyPlot.plot(x, y);"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Julia",
   "language": "julia",
   "name": "julia"
  },
  "language_info": {
   "file_extension": ".jl",
   "mimetype": "application/julia",
   "name": "julia",
   "version": "1.11.6"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
