Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 30, 2019 00:25
Embed
What would you like to do?
namespace MattEland.FSharpGeneticAlgorithm.Logic
module WorldPos =
type WorldPos = {X: int32; Y:int32}
let newPos x y = {X = x; Y = y}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment