## Introduction to Logo Turtle [LogoTurtle](https://helloacm.com/turtle-programming-v0-0-5-adding-if-else-and-stop/) is the first and currently only one Chrome Extension for Turtle Graphics. I have also written [a PHP version of Logo Interpreter](https://steakovercooked.com/Software.Logo) in 2006 but that runs only on the server. ## Previous Contributions - v0.0.4: [LogoTurtle: Make Variables and Comments](https://helloacm.com/logoturtle-make-variables-and-comments/) - v0.0.3: [Turtle Graphics Programming Update: Adding text, jump, dot, fontsize, download as png](https://helloacm.com/turtle-graphics-programming-update-adding-text-jump-dot-fontsize-download-as-png/) - v0.0.2: [LogoTurtle v0.0.2: ShowTurtle, HideTurtle, Color, Width and Help](https://helloacm.com/logoturtle-v0-0-2-showturtle-hideturtle-color-width-and-help/). - Teach Your Kids Programming - The First Logo Interpreter (Turtle Graphics) in Chrome Extension! [v0.0.1](https://helloacm.com/teach-your-kids-programming-the-first-logo-interpreter-turtle-graphics-in-chrome-extension/) ## v0.0.5 New Features [**This Commit**](https://github.com/DoctorLai/LogoTurtle/commit/c960f5ea159b4475282aa566bcf3005c0323afe4) supports **IF/ELSE** and **STOP**. In previous versions, the LOOP program flow is supported by keyword **REPEAT** and the most important IF/ELSE is now implemented in this version. ## Screenshots This is how things get a little bit interesting and I believe now you can have your imaginations fly.  ``` ht cs make "a 1 repeat 8 [pu fd 100 pd repeat 12 [ if :a%3==1 [rt 90] else [lt 90] fd 30 make "a :a+1 ] pu bk 100 rt 45] ``` # How to Implement IF/ELSE in Logo/Javascript? The IF part is similar to REPEAT and all we need to do is to parse the ELSE part. ``` case "if": expr = this.evalVars(word_next, true); try { word_next = eval(expr); } catch (e) { this.pushErr(LOGO_ERR_EVAL, expr); return false; } if ((word_next === '')) { this.pushErr(LOGO_ERR_MISSING_EXP, word_next); return false; } find_left = getNextWord(s, y.next, U); if (find_left.word != '[') { this.pushErr(LOGO_ERR_MISSING_LEFT, find_left.word); return false; } repeat_left = find_left.next; find_right = repeat_left + 1; nested = 1; // need to match [ and ] while (find_right < U) { if (s[find_right] == '[') { nested ++; } if (s[find_right] == ']') { nested --; if (nested == 0) { break; } } find_right ++; } if (find_right >= U) { this.pushWarning(LOGO_ERR_MISSING_RIGHT); } let ifelse = word_next; if (ifelse) { // if body if (!this.run(s, repeat_left, find_right, depth + 1)) { return false; } } find_else = getNextWord(s, find_right + 1, U); if (find_else.word.toLowerCase() == 'else') { let else_block = getNextBody(s, find_else.next, U); if (else_block.ch != '[') { this.pushErr(LOGO_ERR_MISSING_LEFT, else_block.ch); return false; } if (!ifelse) { // else body if (!this.run(s, else_block.left, else_block.right, depth + 1)) { return false; } } i = else_block.right + 1; } else { // no else block i = find_right + 1; } break; ``` ## Roadmap of Chrome Extension: Logo Turtle 1. Add Functions 2. Add IF/THEN/ELSE 3. Add Variables 4. Add Colors 5. Add MoveTo 6. Add PrintText 7. Add Circle 8. Add Arc 9. Add Eraser 10. Add Fill 11. Save As Picture 12. Save As Program 13. Comments 14. Add Recursion Support 15. Add Global/Local Scopes 16. etc. etc. ## Technology Stack If an App can be written in [Javascript](https://helloacm.com/steemit-javascript-function-to-get-original-post-from-comments-permlink/), eventually it will be written in Javascript. # Chrome Webstore Install the [Turtle Programming for Kids](https://chrome.google.com/webstore/detail/logo-turtle/dcoeaobaokbccdcnadncifmconllpihp) Now! # Contribution Welcome Github: https://github.com/DoctorLai/LogoTurtle 1. Fork it! 2. Create your feature branch: `git checkout -b my-new-feature` 3. Commit your changes: `git commit -am 'Add some feature'` 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request. <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@justyy/turtle-programming-v0-0-5-adding-if-else-and-stop">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | justyy | ||||||
---|---|---|---|---|---|---|---|
permlink | turtle-programming-v0-0-5-adding-if-else-and-stop | ||||||
category | utopian-io | ||||||
json_metadata | {"community":"utopian","app":"steemit/0.1","format":"markdown","repository":{"id":121791502,"name":"LogoTurtle","full_name":"DoctorLai/LogoTurtle","html_url":"https://github.com/DoctorLai/LogoTurtle","fork":false,"owner":{"login":"DoctorLai"}},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","steemstem","programming","steemdev","cn-programming"],"links":["https://helloacm.com/turtle-programming-v0-0-5-adding-if-else-and-stop/","https://steakovercooked.com/Software.Logo","https://helloacm.com/logoturtle-make-variables-and-comments/","https://helloacm.com/turtle-graphics-programming-update-adding-text-jump-dot-fontsize-download-as-png/","https://helloacm.com/logoturtle-v0-0-2-showturtle-hideturtle-color-width-and-help/","https://helloacm.com/teach-your-kids-programming-the-first-logo-interpreter-turtle-graphics-in-chrome-extension/","https://github.com/DoctorLai/LogoTurtle/commit/c960f5ea159b4475282aa566bcf3005c0323afe4","https://helloacm.com/steemit-javascript-function-to-get-original-post-from-comments-permlink/","https://chrome.google.com/webstore/detail/logo-turtle/dcoeaobaokbccdcnadncifmconllpihp","https://github.com/DoctorLai/LogoTurtle","https://utopian.io/utopian-io/@justyy/turtle-programming-v0-0-5-adding-if-else-and-stop"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1519885299/ql5utq6uoqdzdpa4lhia.png"],"moderator":{"account":"ms10398","time":"2018-03-01T11:03:32.731Z","reviewed":true,"pending":false,"flagged":false},"questions":[],"score":0} | ||||||
created | 2018-03-01 06:24:24 | ||||||
last_update | 2018-03-02 08:52:30 | ||||||
depth | 0 | ||||||
children | 5 | ||||||
last_payout | 2018-03-08 06:24:24 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 48.424 HBD | ||||||
curator_payout_value | 17.122 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 4,355 | ||||||
author_reputation | 280,616,224,641,976 | ||||||
root_title | "Turtle Programming v0.0.5: Adding IF/ELSE and STOP!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 41,306,183 | ||||||
net_rshares | 15,515,505,814,182 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 91,356,116,502 | 0.02% | ||
lafona-miner | 0 | 146,376,676,894 | 2.5% | ||
kushed | 0 | 2,074,777,259 | 0.75% | ||
steem-id | 0 | 8,299,838,118 | 0.75% | ||
mrs.agsexplorer | 0 | 8,597,589,826 | 2% | ||
justtryme90 | 0 | 56,751,839,402 | 2% | ||
anwenbaumeister | 0 | 25,866,089,948 | 0.75% | ||
grandpere | 0 | 8,764,810,495 | 5% | ||
liberosist | 0 | 50,250,340,054 | 0.75% | ||
joythewanderer | 0 | 84,182,657,662 | 20% | ||
ace108 | 0 | 213,535,347,289 | 18% | ||
ninjace | 0 | 410,348,628 | 5% | ||
magicmonk | 0 | 93,156,827,578 | 50% | ||
timsaid | 0 | 5,145,055,044 | 1% | ||
velourex | 0 | 1,047,141,319 | 0.75% | ||
rivalhw | 0 | 74,202,191,946 | 5% | ||
lemouth | 0 | 16,266,655,214 | 3.5% | ||
rjbauer85 | 0 | 180,919,654 | 5% | ||
anarchyhasnogods | 0 | 8,106,271,010 | 2.5% | ||
lamouthe | 0 | 1,258,319,356 | 5% | ||
lordoftruth | 0 | 32,132,678,665 | 21% | ||
justyy | 0 | 591,599,014,599 | 80% | ||
steemedia | 0 | 106,659,501 | 0.75% | ||
meerkat | 0 | 26,946,064,107 | 0.75% | ||
curie | 0 | 43,388,974,145 | 0.75% | ||
cebymaster | 0 | 132,898,959 | 0.75% | ||
luneknight | 0 | 628,359,401 | 100% | ||
hendrikdegrote | 0 | 516,027,101,501 | 0.75% | ||
steemstem | 0 | 133,067,775,041 | 5% | ||
vinode | 0 | 18,595,422,184 | 100% | ||
dapeng | 0 | 2,482,183,785 | 2% | ||
happyukgo | 0 | 1,493,127,356 | 80% | ||
teofilex11 | 0 | 622,790,604 | 0.75% | ||
foundation | 0 | 485,502,301 | 5% | ||
the-devil | 0 | 875,044,791 | 5% | ||
dna-replication | 0 | 1,395,685,807 | 5% | ||
pacokam8 | 0 | 80,138,607 | 0.15% | ||
jamhuery | 0 | 1,122,092,502 | 5% | ||
sv67216721 | 0 | 421,975,369 | 5% | ||
mobbs | 0 | 9,727,991,686 | 4.25% | ||
frankintaiwan | 0 | 80,958,102 | 20% | ||
bp423 | 0 | 129,750,290 | 0.75% | ||
oscarcc89 | 0 | 100,390,670 | 0.07% | ||
kryzsec | 0 | 1,841,301,471 | 5% | ||
markangeltrueman | 0 | 178,476,490 | 0.37% | ||
jassennessaj | 0 | 15,463,602,523 | 10% | ||
fredrikaa | 0 | 8,775,020,404 | 2.5% | ||
mkt | 0 | 51,228,201,682 | 100% | ||
helo | 0 | 912,899,883 | 10% | ||
trumpman | 0 | 7,065,303,837 | 5% | ||
locikll | 0 | 420,938,521 | 1.5% | ||
dber | 0 | 2,266,725,836 | 5% | ||
aboutyourbiz | 0 | 210,606,490 | 0.75% | ||
dreamien | 0 | 74,974,002 | 0.75% | ||
shenchensucc | 0 | 3,042,263,488 | 20% | ||
kerriknox | 0 | 23,854,712,172 | 5% | ||
alexander.alexis | 0 | 275,077,406 | 1% | ||
howtostartablog | 0 | 447,516,145 | 0.03% | ||
slickhustler007 | 0 | 50,339,895 | 0.37% | ||
victorialuxx | 0 | 161,168,935 | 100% | ||
ertwro | 0 | 2,079,197,422 | 5% | ||
nitesh9 | 0 | 1,246,256,757 | 5% | ||
churchboy | 0 | 610,950,467 | 5% | ||
himal | 0 | 294,807,889 | 5% | ||
abigail-dantes | 0 | 75,043,779,466 | 5% | ||
leczy | 0 | 509,195,891 | 5% | ||
robinlee | 0 | 367,915,474 | 100% | ||
ovij | 0 | 545,071,839 | 5% | ||
sandan | 0 | 169,112,812 | 100% | ||
rainyapril | 0 | 493,413,928 | 100% | ||
al2ping | 0 | 98,099,092 | 100% | ||
oldman28 | 0 | 14,109,374,604 | 50% | ||
justdentist | 0 | 290,757,520 | 0.07% | ||
liangfengyouren | 0 | 1,119,233,212 | 50% | ||
somethingburger | 0 | 323,645,200 | 5% | ||
shengjian | 0 | 17,692,864,369 | 100% | ||
mangoanddaddy | 0 | 1,094,146,438 | 80% | ||
kangnajiang | 0 | 274,836,552 | 100% | ||
cifer | 0 | 3,218,435,047 | 80% | ||
geass | 0 | 509,432,277 | 100% | ||
moonvoid | 0 | 614,503,785 | 100% | ||
tvb | 0 | 11,217,796,413 | 33% | ||
boontjie | 0 | 17,241,187,623 | 100% | ||
irenett | 0 | 798,507,391 | 100% | ||
rosatravels | 0 | 62,865,041,693 | 50% | ||
cryptonator | 0 | 209,176,010 | 0.75% | ||
xuran | 0 | 5,075,463,584 | 100% | ||
awiwea1974 | 0 | 402,540,054 | 100% | ||
superbing | 0 | 7,219,471,590 | 80% | ||
dailyfortune | 0 | 5,242,682,299 | 80% | ||
xiaoshancun | 0 | 610,061,301 | 100% | ||
dailystats | 0 | 10,585,681,857 | 80% | ||
lixing | 0 | 3,273,540,876 | 100% | ||
rscalabrini | 0 | 205,751,351 | 0.75% | ||
wangwenjing | 0 | 1,757,948,662 | 60% | ||
xuzhen | 0 | 8,686,612,668 | 60% | ||
ayman101 | 0 | 577,004,325 | 100% | ||
bobdos | 0 | 7,487,950,220 | 100% | ||
vandadream | 0 | 5,456,570,990 | 100% | ||
steemline | 0 | 188,150,511 | 100% | ||
carloserp-2000 | 0 | 807,803,431 | 5% | ||
pangoli | 0 | 291,809,892 | 5% | ||
rachelsmantra | 0 | 214,559,082 | 5% | ||
winniex | 0 | 2,331,986,982 | 10% | ||
hsynterkr | 0 | 5,750,169,771 | 100% | ||
ivysrono | 0 | 1,397,362,308 | 100% | ||
altherion | 0 | 2,056,661,054 | 5% | ||
gra | 0 | 1,875,349,393 | 5% | ||
jianan | 0 | 487,613,133 | 100% | ||
utopian-io | 0 | 12,641,524,225,151 | 7.89% | ||
kedi | 0 | 511,171,466 | 1.5% | ||
nada101 | 0 | 595,050,924 | 100% | ||
nileelily | 0 | 4,281,608,469 | 100% | ||
spectrums | 0 | 104,036,333 | 0.75% | ||
daxiang | 0 | 234,918,811 | 100% | ||
jasimg | 0 | 926,742,711 | 0.75% | ||
anxin | 0 | 493,891,159 | 100% | ||
cnsteem | 0 | 57,994,569,822 | 100% | ||
stabilowl | 0 | 35,829,974,893 | 36% | ||
richardbmx | 0 | 3,527,300,369 | 100% | ||
lebin | 0 | 32,022,471,528 | 50% | ||
xanderslee | 0 | 79,235,435 | 0.75% | ||
kenadis | 0 | 1,351,675,536 | 5% | ||
amavi | 0 | 758,433,926 | 1% | ||
robotics101 | 0 | 137,006,091 | 4.25% | ||
gentleshaid | 0 | 744,857,569 | 5% | ||
cryptonewsly | 0 | 189,686,400 | 100% | ||
sco | 0 | 212,458,685 | 1% | ||
dysfunctional | 0 | 301,180,810 | 2.5% | ||
tdre | 0 | 687,999,797 | 100% | ||
blockd | 0 | 503,475,621 | 100% | ||
wanderingdanish | 0 | 87,578,949 | 1% | ||
moobear | 0 | 1,362,764,073 | 100% | ||
hadji | 0 | 235,386,574 | 5% | ||
steemstem-bot | 0 | 2,249,001,353 | 15% | ||
jjay | 0 | 641,929,931 | 100% | ||
madokami | 0 | 91,777,662 | 100% | ||
prch | 0 | 1,742,521,359 | 100% | ||
nean | 0 | 502,901,309 | 100% | ||
foodielifestyle | 0 | 1,932,864,991 | 100% | ||
meixia | 0 | 3,151,264,735 | 100% | ||
woolfe19861008 | 0 | 767,565,452 | 100% | ||
nobyeni | 0 | 79,917,278 | 0.03% | ||
deutsch-boost | 0 | 367,980,211 | 20% | ||
dailychina | 0 | 7,327,078,805 | 80% | ||
arabel | 0 | 504,537,891 | 60% | ||
vincenthan | 0 | 507,443,564 | 100% | ||
yuxuan | 0 | 84,169,191 | 100% | ||
dongfengman | 0 | 4,215,345,686 | 100% | ||
historylover | 0 | 539,376,313 | 100% | ||
serenazz | 0 | 780,204,358 | 100% | ||
cha0s0000 | 0 | 3,436,331,351 | 100% | ||
yedda | 0 | 503,358,995 | 100% | ||
shentrading | 0 | 598,272,511 | 100% | ||
zasilla | 0 | 505,786,093 | 100% | ||
zipporah | 0 | 141,912,742 | 0.15% | ||
fishaa | 0 | 314,230,555 | 100% | ||
aaronstar | 0 | 112,489,691 | 100% | ||
ayanamoon | 0 | 106,137,682 | 100% | ||
hrissm | 0 | 146,277,672 | 0.75% | ||
ethanlee | 0 | 8,854,513,690 | 100% | ||
twinsnicole | 0 | 496,064,103 | 100% | ||
deepthinking | 0 | 488,630,775 | 100% | ||
gogoabc | 0 | 334,422,331 | 100% | ||
fishbb | 0 | 123,378,925 | 100% | ||
fanso | 0 | 917,761,611 | 100% | ||
lilypang22 | 0 | 1,764,140,698 | 100% | ||
theagriculturist | 0 | 523,488,368 | 100% | ||
jeffan | 0 | 50,861,262 | 100% | ||
de-stem | 0 | 668,405,904 | 2.5% | ||
fishcc | 0 | 206,050,620 | 100% | ||
tinna | 0 | 208,911,073 | 100% | ||
mfxqaq | 0 | 267,288,282 | 100% | ||
amyli | 0 | 87,437,666 | 100% | ||
julieangel | 0 | 612,939,532 | 100% | ||
zens | 0 | 400,124,028 | 100% | ||
steamsteem | 0 | 1,839,414,207 | 1% | ||
ashi0 | 0 | 499,430,165 | 100% | ||
steemitvip | 0 | 478,285,484 | 100% | ||
lakemountain | 0 | 266,118,499 | 100% | ||
regals | 0 | 503,873,871 | 100% | ||
fengx | 0 | 568,636,659 | 100% | ||
zdyan | 0 | 536,251,090 | 100% |
upvote
author | bobdos |
---|---|
permlink | re-justyy-turtle-programming-v0-0-5-adding-if-else-and-stop-20180301t092750138z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-01 09:27:51 |
last_update | 2018-03-01 09:27:51 |
depth | 1 |
children | 0 |
last_payout | 2018-03-08 09:27:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 7,506,600,424,421 |
root_title | "Turtle Programming v0.0.5: Adding IF/ELSE and STOP!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,337,331 |
net_rshares | 0 |
Thank you for the contribution. It has been approved. You can contact us on [Discord](https://discord.gg/uTyJkNm). **[[utopian-moderator]](https://utopian.io/moderators)**
author | ms10398 |
---|---|
permlink | re-justyy-turtle-programming-v0-0-5-adding-if-else-and-stop-20180301t110350941z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-03-01 11:03:51 |
last_update | 2018-03-01 11:03:51 |
depth | 1 |
children | 0 |
last_payout | 2018-03-08 11:03:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 173 |
author_reputation | 27,572,487,973,390 |
root_title | "Turtle Programming v0.0.5: Adding IF/ELSE and STOP!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,354,253 |
net_rshares | 0 |
<center><a href="www.steemit.com/@steemstem"><img src="https://media.discordapp.net/attachments/384404201544876032/405507994583957505/steemSTEM.png"></a><br><table><tr><th> </th><th> </th><th><a href="https://steemit.com/steemstem/@steemstem/helpful-guidelines-for-crafting-steemstem-content">Guidelines</a></th><th><a href="https://steemit.com/steemstem/@steemstem/steemstem-winter-2017-2018-project-update">Project Update</a></th><th> </th><th> </th></tr></table><br><a href="https://steemit.com/steemstem/@steemstem/being-a-member-of-the-steemstem-community"><b>Being A SteemStem Member</b></a></center>
author | steemstem-bot |
---|---|
permlink | re-turtle-programming-v0-0-5-adding-if-else-and-stop-20180301t223909 |
category | utopian-io |
json_metadata | "" |
created | 2018-03-01 22:39:09 |
last_update | 2018-03-01 22:39:09 |
depth | 1 |
children | 1 |
last_payout | 2018-03-08 22:39:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.722 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 606 |
author_reputation | 3,811,533,615,496 |
root_title | "Turtle Programming v0.0.5: Adding IF/ELSE and STOP!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,487,787 |
net_rshares | 141,891,748,102 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
justtryme90 | 0 | 141,891,748,102 | 5% |
thank you very much, that means a lot to me :)
author | justyy |
---|---|
permlink | re-steemstem-bot-re-turtle-programming-v0-0-5-adding-if-else-and-stop-20180301t223909-20180302t170433133z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-02 17:04:33 |
last_update | 2018-03-02 17:04:33 |
depth | 2 |
children | 0 |
last_payout | 2018-03-09 17:04:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 280,616,224,641,976 |
root_title | "Turtle Programming v0.0.5: Adding IF/ELSE and STOP!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,678,854 |
net_rshares | 0 |
### Hey @justyy I am @utopian-io. I have just upvoted you! #### Achievements - WOW WOW WOW People loved what you did here. GREAT JOB! - Seems like you contribute quite often. AMAZING! #### Community-Driven Witness! I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER! - <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a> - <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a> - Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a> [](https://steemit.com/~witnesses) **Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
author | utopian-io |
---|---|
permlink | re-justyy-turtle-programming-v0-0-5-adding-if-else-and-stop-20180302t015133487z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-03-02 01:51:33 |
last_update | 2018-03-02 01:51:33 |
depth | 1 |
children | 0 |
last_payout | 2018-03-09 01:51:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,061 |
author_reputation | 152,955,367,999,756 |
root_title | "Turtle Programming v0.0.5: Adding IF/ELSE and STOP!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,518,521 |
net_rshares | 0 |