Fixes and improvements

This commit is contained in:
Bruce Hill 2025-03-25 02:25:54 -04:00
parent b981e479f1
commit 94af62e581
6 changed files with 45 additions and 32 deletions

View File

@ -71,7 +71,7 @@ func ask_continue():
func clear_screen(): func clear_screen():
say("$\x1b[2J$\x1b[H", newline=no) say("$\x1b[2J$\x1b[H", newline=no)
func summarize_tests(highlight=none:Path): func summarize_tests(results:[TestResult], highlight=none:Path):
$Colorful" $Colorful"
@(yellow,b,u:Lessons) @(yellow,b,u:Lessons)
@ -80,7 +80,7 @@ func summarize_tests(highlight=none:Path):
passing := 0 passing := 0
failing := 0 failing := 0
for i,lesson in LESSONS: for i,lesson in LESSONS:
result := lesson:get_result() result := results[i]
if result:is_success(): if result:is_success():
passing += 1 passing += 1
$Colorful" $Colorful"
@ -104,12 +104,23 @@ func summarize_tests(highlight=none:Path):
":print() ":print()
func short_summarize_tests(results:[TestResult]):
say("Progress: ", newline=no)
for result in results:
if result:is_success():
$Colorful"@(green,bold:#)":print(newline=no)
else:
$Colorful"@(red,dim:#)":print(newline=no)
say(\n)
func choose_option(options:{Text,Text} -> Text): func choose_option(options:{Text,Text} -> Text):
repeat: repeat:
for k,v in options: for k,v in options:
$Colorful" $Colorful"
@(b:($k)) $v @(b:($k)) $v
":print() ":print()
say("")
choice := (ask("Choose an option: ") or goodbye()):lower():to(1) choice := (ask("Choose an option: ") or goodbye()):lower():to(1)
if options:has(choice): if options:has(choice):
return choice return choice
@ -194,7 +205,7 @@ func main(clean=no -> Abort):
ask_continue() ask_continue()
repeat: repeat:
clear_screen() clear_screen()
summarize_tests() summarize_tests(test_results)
choice := ask("Choose a test or (q)uit: ") or stop repeat choice := ask("Choose a test or (q)uit: ") or stop repeat
if choice == "q" or choice == "Q": stop repeat if choice == "q" or choice == "Q": stop repeat
@ -216,6 +227,7 @@ func main(clean=no -> Abort):
repeat: repeat:
lesson := LESSONS[n] lesson := LESSONS[n]
show_lesson(lesson, test_results[n]) show_lesson(lesson, test_results[n])
short_summarize_tests(test_results)
options := &{ options := &{
"e"="Edit file and try again", "e"="Edit file and try again",

View File

@ -27,7 +27,7 @@ func main():
total += score total += score
>> total >> total
= 9999 = ???
# Table keys and values can be accessed as an array: # Table keys and values can be accessed as an array:
>> scores.keys >> scores.keys

View File

@ -22,7 +22,7 @@ func main():
line three line three
" "
# Methods calls use `:` # Method calls use `:`
>> multiline:lines() >> multiline:lines()
= [???] = [???]

View File

@ -9,7 +9,7 @@ struct Point(x:Int, y:Int):
# There is no implicit `self` argument, only the # There is no implicit `self` argument, only the
# arguments you explicitly define. # arguments you explicitly define.
func absolute(p:Point -> Point): func abs(p:Point -> Point):
return Point(p.x:abs(), p.y:abs()) return Point(p.x:abs(), p.y:abs())
# Constants can be declared inside of a struct's namespace: # Constants can be declared inside of a struct's namespace:
@ -22,7 +22,7 @@ struct Point(x:Int, y:Int):
func main(): func main():
# You can create a struct instance like this: # You can create a struct instance like this:
p := Point(x=3, y=4) p := Point(x=3, y=-4)
>> p >> p
= Point(x=???, y=???) = Point(x=???, y=???)
@ -35,8 +35,12 @@ func main():
>> p.y >> p.y
= ??? = ???
>> p.sum() >> p:abs()
= ??? = ???
>> Point.squared_int(5) >> Point.squared_int(5)
= ??? = ???
>> Int.abs(-2)
>> -2:abs()

View File

@ -6,7 +6,7 @@ enum Shape(Circle(radius: Num), Rectangle(width: Num, height: Num), Point):
# Use `when` to pattern match an enum: # Use `when` to pattern match an enum:
func area(shape: Shape -> Num): func area(shape: Shape -> Num):
when shape is Circle(radius): when shape is Circle(radius):
return Num.PI * radius * radius return Num.PI * radius^2
is Rectangle(width, height): is Rectangle(width, height):
return width * height return width * height
is Point: is Point:
@ -15,23 +15,23 @@ enum Shape(Circle(radius: Num), Rectangle(width: Num, height: Num), Point):
func main(): func main():
# You can create instances of an enum: # You can create instances of an enum:
s1 := Shape.Point point := Shape.Point
# Single member enums display without the field names: # Single member enums display without the field names:
s2 := Circle(radius=10) circle := Shape.Circle(radius=10)
>> s1 >> circle
= Circle(10) = Circle(10)
# Multi-member enums explicitly list their field names: # Multi-member enums explicitly list their field names:
s3 := Shape.Rectangle(width=4, height=5) rect := Shape.Rectangle(width=4, height=5)
>> s3 >> rect
= Rectangle(width=4, height=5) = Rectangle(width=4, height=5)
>> s1:area() >> point:area()
= ??? = ???
>> s2:area() >> rect:area()
= ??? = ???
>> "My shape is $s3" >> "My shape is $circle"
= ??? = ???

View File

@ -5,43 +5,40 @@ func main():
# Tomo includes a built-in literal type for file paths # Tomo includes a built-in literal type for file paths
# A path is inside parentheses and begins with `/`, `~`, `.` or `..` # A path is inside parentheses and begins with `/`, `~`, `.` or `..`
file := (/tmp/test-file.txt) path := (/tmp/test-file.txt)
>> file >> path
= /tmp/test-file.txt = /tmp/test-file.txt
file:write("first line") path:write("first line")
>> file:read() >> path:read()
= "???" = "???"
file:append(" path:append("
second line second line
") ")
>> file:exists() >> path:exists()
= yes = yes
>> file:lines()
= [???]
# You can iterate over a file by lines: # You can iterate over a file by lines:
>> upper_lines := [line:upper() for line in file:by_line()] >> upper_lines := [line:upper() for line in path:by_line()!]
= [???] = [???]
>> file:parent() >> path:parent()
= /??? = /???
>> file:extension() >> path:extension()
= "???" = "???"
>> file:parent():child("other-file.txt") >> path:parent():child("other-file.txt")
= /??? = /???
>> dir := (/tmp/test-*.txt):glob() >> dir := (/tmp/test-*.txt):glob()
= [???] = [???]
file:remove() path:remove()
>> file:exists() >> path:exists()
= ??? = ???