Skip to content

Instantly share code, notes, and snippets.

@ceptreee
Created May 28, 2020 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ceptreee/ef80e5b6c6fed15a79fdf25573aa7923 to your computer and use it in GitHub Desktop.
Save ceptreee/ef80e5b6c6fed15a79fdf25573aa7923 to your computer and use it in GitHub Desktop.
hai1 = "(」・ω・)」ハイ"
hai2 = "(」・ω・)「ハイ"
hai3 = "(「・ω・)「ハイ"
hai4 = "(「・ω・)」ハイボール"
do for [i=1:100]{
if (i % 4 == 0) {
set title hai1 font "Arial, 24"
plot x
}
if (i % 4 == 1) {
set title hai2 font "Arial, 24"
plot x**2
}
if (i % 4 == 2) {
set title hai3 font "Arial, 24"
plot x**3
}
if (i % 4 == 3) {
set title hai4 font "Arial, 24"
plot x**4
pause 0.6
}
set yrange [-1:1]
set xrange [-1:1]
pause 0.3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment