Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
NicklasXYZ committed Sep 17, 2023
1 parent 637f052 commit 36ef18a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import gleam_community/maths/arithmetics
import gleam_community/maths/combinatorics
import gleam_community/maths/elementary
import gleam_community/maths/piecewise
import gleam_community/maths/tests
import gleam_community/maths/predicates
import gleam/float
pub fn main() {
Expand All @@ -35,11 +35,11 @@ pub fn main() {
// Returns List: Ok([1, 4])
// Determine if a number is fractional
tests.is_fractional(0.3333)
predicates.is_fractional(0.3333)
// Returns Bool: True
// Determine if 28 is a power of 3
tests.is_power(28, 3)
predicates.is_power(28, 3)
// Returns Bool: False
// Generate all k = 1 combinations of [1, 2]
Expand Down

0 comments on commit 36ef18a

Please sign in to comment.