Add first project euler problem

This commit is contained in:
0x4261756D 2023-07-28 07:05:09 +02:00
parent b1cb4a0a0e
commit dcfb3147ba
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
import "../std.qbl"
true 3 0
while
{
// i sum
dup check req req +
incAndCheck req
}
deq intToStr println
function int => int check
{
3 dup % 0 req != req
// not_divisible start
if
{
5 dup % 0 req != req
if
{
deq 0
}
}
}
function int => bool int incAndCheck
{
1 + 1000 dup < req
}