Skip to content

Instantly share code, notes, and snippets.

@Hr0k
Created June 17, 2019 17:52
Show Gist options
  • Save Hr0k/639c8663bc05b0c9ea7f4aaf8e6da11b to your computer and use it in GitHub Desktop.
Save Hr0k/639c8663bc05b0c9ea7f4aaf8e6da11b to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# juliaのテスト\n",
"ifだったりwhileだったりはインデントでなく、その終わりの位置にendを入れるみたいです。"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1\n",
"2\n",
"3\n",
"4\n",
"5\n",
"6\n",
"7\n",
"8\n",
"9\n",
"10\n"
]
},
{
"data": {
"text/plain": [
"10"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"n = 0\n",
"while n < 10\n",
" n += 1\n",
" println(n)\n",
"end\n",
"\n",
"n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## インデントを取り除いてみる\n",
"まあ読みにくいので、インデントは大事ですね。"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1\n",
"2\n",
"3\n",
"4\n",
"5\n",
"6\n",
"7\n",
"8\n",
"9\n",
"10\n"
]
}
],
"source": [
"n = 0\n",
"while n < 10\n",
"n += 1\n",
"println(n)\n",
"end\n",
"\n",
"#n # コメントアウト"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"2\n",
"4\n",
"6\n",
"8\n",
"10\n"
]
},
{
"data": {
"text/plain": [
"10"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"n = 0\n",
"while n < 10\n",
" n += 1\n",
" if n % 2 == 0\n",
" println(n)\n",
" end\n",
"end\n",
"\n",
"n"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 1.0.4",
"language": "julia",
"name": "julia-1.0"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.0.4"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment