This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // required: p5.js | |
| // 29 September 2018, 9:09 A.M. | |
| // in sketch.js :D | |
| function Text() { | |
| // ukuran font default | |
| this.font_size = 10; | |
| // skala zoom in dilakukan 5x setiap melakukan zoom in | |
| this.zoom_step = 5; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # sh ambil-argumen.sh zul dosen | |
| # Argumen 1: zul | |
| # Argumen 2: dosen | |
| # | |
| # $1 akan mengambil argumen pertama | |
| # begitupun $2 dan seterusnya | |
| echo "Argumen 1: $1" |
NewerOlder