Kickstarter update #8 had some info on this
https://www.kickstarter.com/projects/21 ... sts/669549
Skip the first few paragraphs, which talk about stretch goals, and then you find the technical content.
Search found 6 matches
- Mon Jun 02, 2014 7:56 am
- Forum: Development of MicroPython
- Topic: Micropythons parsing stratergy?
- Replies: 1
- Views: 3507
- Thu May 29, 2014 7:11 pm
- Forum: General Discussion and Questions
- Topic: language barfs?
- Replies: 3
- Views: 5222
- Thu May 29, 2014 6:06 pm
- Forum: General Discussion and Questions
- Topic: where to post bugs?
- Replies: 3
- Views: 5030
- Thu May 29, 2014 1:36 pm
- Forum: General Discussion and Questions
- Topic: where to post bugs?
- Replies: 3
- Views: 5030
where to post bugs?
Last night I posted a bug report -- example code and its obviously broken output. It was approved, and later I made a small edit to the example code to reduce confusion. And now I don't see the post at all. Either the edit somehow killed the post, or someone killed the post as perhaps it wasn't in t...
- Thu May 29, 2014 4:29 am
- Forum: General Discussion and Questions
- Topic: language barfs?
- Replies: 3
- Views: 5222
Re: language barfs?
I just noticed that the function is named "primes" and there is a local array also named "primes." I'm not sure if this is strictly legal, but in case it was causing confusion, I renamed the function to "list_primes". The code produces the same failure as before.
- Thu May 29, 2014 3:36 am
- Forum: General Discussion and Questions
- Topic: language barfs?
- Replies: 3
- Views: 5222
language barfs?
I just received my micropython borad today and it works -- the little accelerometer demo to drive the LEDs works, I can enter commands at the REPL and all is good so far. To give it something more to chew on, I wrote this main.py: import math import pyb def list_primes(): num_primes = 1 print("prime...